@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");
* {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
html.active {
  overflow-y: hidden;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: #1C1C1C;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

img {
  vertical-align: top;
}

a {
  text-decoration: none;
  color: #1C1C1C;
}
a:hover {
  opacity: 0.5;
  transition: 0.4s all;
}

.sup {
  position: relative;
  top: 0;
}

.sub {
  position: relative;
  bottom: 0;
}

/* ---------------------------------------
  共通パーツ
--------------------------------------- */
.pc {
  display: block !important;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.pc_only {
  display: block !important;
}
@media only screen and (max-width: 960px) {
  .pc_only {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

.monitor_only {
  display: block !important;
}
@media only screen and (max-width: 1440px) {
  .monitor_only {
    display: none !important;
  }
}
@media only screen and (max-width: 960px) {
  .monitor_only {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .monitor_only {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.tab {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .tab {
    display: block !important;
  }
}

.tab_only {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .tab_only {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .tab_only {
    display: none !important;
  }
}

.bg_light_blue {
  background-color: #EEF3FE;
}

/*-- メインコンテンツ（ヘッダー分の余白） --*/
#content {
  padding-top: 84px;
}
@media only screen and (max-width: 767px) {
  #content {
    padding-top: 72px;
  }
}

/*-- セクション --*/
.sec_inner_max {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .sec_inner_max {
    padding: 0 4.1025641026vw;
  }
}
.sec_inner_middle {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .sec_inner_middle {
    padding: 0 4.1025641026vw;
  }
}
.sec_inner_min {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .sec_inner_min {
    padding: 0 4.1025641026vw;
  }
}

/*-- セクションタイトル --*/
.sec_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_ttl .big {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
}
@media only screen and (max-width: 767px) {
  .sec_ttl .big {
    font-size: 3.2rem;
  }
}
.sec_ttl .middle {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
}
@media only screen and (max-width: 767px) {
  .sec_ttl .middle {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 960px) {
  .sec_ttl .middle {
    font-size: 2.7rem;
  }
}
.sec_ttl .small {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  color: #707070;
}
@media only screen and (max-width: 767px) {
  .sec_ttl .small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

/*-- テキスト --*/
.base_txt {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .base_txt {
    font-size: 1.4rem;
  }
}

.em_txt_purp {
  font-weight: 700;
  color: #5C38AA;
}
.em_txt_blue {
  font-weight: 700;
  color: #005EB0;
}
.em_txt_green {
  font-weight: 700;
  color: #01908F;
}
.em_txt_ora {
  font-weight: 700;
  color: #FF9900;
}

.marker_ore {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: #FF9900;
  text-decoration-thickness: 0.28em;
  text-underline-offset: -0.08em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.marker_green {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: #D5EFA1;
  text-decoration-thickness: 0.28em;
  text-underline-offset: -0.08em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

/*-- 左に数字（黒背景）がついてるテキスト --*/
.num_box_txt {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .num_box_txt {
    gap: 12px;
  }
}
.num_box_txt .num {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 0.1em;
  width: 36px;
  height: 36px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background-color: #1C1C1C;
  border-radius: 8px;
}
@media only screen and (max-width: 960px) {
  .num_box_txt .num {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .num_box_txt .num {
    width: 24px;
    height: 24px;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}
.num_box_txt .right_txt {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.33;
}
@media only screen and (max-width: 960px) {
  .num_box_txt .right_txt {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .num_box_txt .right_txt {
    font-size: 1.6rem;
  }
}

/*-- カラフルな角丸テキスト --*/
.color_round_txt .inner {
  display: inline-block;
  padding: 0 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .color_round_txt .inner {
    padding: 0 16px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.color_round_txt .inner.purple {
  background-color: #5C38AA;
}
.color_round_txt .inner.blue {
  background-color: #005EB0;
}
.color_round_txt .inner.green {
  background-color: #01908F;
}

/*-- リスト --*/
.dots_list {
  margin-top: 8px;
}
.dots_list .dots_item {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .dots_list .dots_item {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.7;
  }
}
.dots_list .dots_item::before {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  top: 0.9em;
  left: 0.5em;
  background-color: #1C1C1C;
}
/*-- パンくずリスト --*/
.breadcrumb {
  padding-top: 80px;
  padding-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding-top: 48px;
    padding-bottom: 14px;
  }
}
.breadcrumb .breadcrumb_list {
  font-size: 1.6rem;
}
.breadcrumb .breadcrumb_list li {
  position: relative;
  line-height: 1;
  display: inline;
}
.breadcrumb .breadcrumb_list li + li::before {
  content: "";
  margin: auto 0.6em auto 0.2em;
  display: inline-block;
  position: relative;
  top: -0.2em;
  bottom: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .breadcrumb .breadcrumb_list li + li::before {
    top: -0.5208333333vw;
  }
}
.breadcrumb .breadcrumb_list .em {
  font-weight: 700;
  color: #005EB0;
}

/*-- 角丸（画像や背景色） --*/
.round_corner_8 {
  border-radius: 8px;
}
.round_corner_16 {
  border-radius: 16px;
}
.round_corner_24 {
  border-radius: 24px;
}

/*-- 画像の周りの肌色の線 --*/
.img_line {
  border: 1px solid #dbdbdb;
}

/*-- ボタン --*/
.btn .arrow {
  position: relative;
  display: block;
  width: 297px;
  text-align: center;
  color: #1C1C1C;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 14px 16px 15px;
  border: 2px solid #1C1C1C;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .btn .arrow {
    width: 100%;
  }
}
.btn .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: solid 2px #1C1C1C;
  border-right: solid 2px #1C1C1C;
  transform: rotate(45deg);
}
.btn .arrow:hover {
  opacity: 1;
  color: #fff;
  background-color: #1C1C1C;
}
.btn .arrow:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.txt_link {
  font-size: 1.6rem;
  line-height: 1.75;
}
.txt_link span {
  position: relative;
  font-weight: 700;
}
.txt_link span::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.txt_link .arrow {
  padding-right: 14px;
}
.txt_link .arrow::after {
  top: 2px;
  width: 6px;
  height: 6px;
  border-top: solid 2px #1C1C1C;
  border-right: solid 2px #1C1C1C;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.txt_link .blank {
  padding-right: 21px;
}
.txt_link .blank::after {
  width: 15px;
  height: 15px;
  background: url("/solutionnext/assets/img/icon_blank.svg") no-repeat center center/contain;
}
.txt_link.white .arrow::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.txt_link.blue .arrow::after {
  border-top: solid 2px #005EB0;
  border-right: solid 2px #005EB0;
}

.border_txt_link {
  color: #005EB0;
  text-decoration: underline;
  cursor: pointer;
}
.border_txt_link:hover {
  opacity: 0.5;
  transition: 0.4s all;
}

/* ---------------------------------------
  ヘッダー
--------------------------------------- */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 84px;
  padding: 23px 28px 23px 24px;
  position: fixed;
  z-index: 100;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #header {
    height: 72px;
    padding: 12px 3.0769230769vw 12px 4.1025641026vw;
  }
}
#header .header_logo {
  width: 320px;
}
@media only screen and (max-width: 767px) {
  #header .header_logo {
    width: 69.2307692308vw;
  }
}
#header .header_nav .gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .header_nav .gnav_list {
  display: flex;
  margin-right: 28px;
}
#header .header_nav .gnav_list.active {
  display: none;
}
@media only screen and (max-width: 767px) {
  #header .header_nav .gnav_list {
    display: none !important;
  }
}
#header .header_nav .gnav_list .gnav_item a {
  font-size: 1.8rem;
  font-weight: 700;
}
#header .header_nav .gnav_list .gnav_item a:hover {
  opacity: 1;
  color: #005EB0;
}
#header .header_nav .gnav_list .gnav_item + .gnav_item {
  margin-left: 40px;
}
#header .header_nav .hamb_menu .hamb_btn {
  position: relative;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  #header .header_nav .hamb_menu .hamb_btn {
    background-color: #fff;
    box-shadow: 4px 2px 6px rgba(0, 0, 0, 0.08);
  }
}
#header .header_nav .hamb_menu .hamb_btn span {
  display: inline-block;
  transition: all 0.7s;
  position: absolute;
  left: 12px;
  width: 24px;
  height: 3px;
  background-color: #005EB0;
}
#header .header_nav .hamb_menu .hamb_btn span:nth-of-type(1) {
  top: 16px;
}
#header .header_nav .hamb_menu .hamb_btn span:nth-of-type(2) {
  top: 24px;
  transition: 0.4s;
}
#header .header_nav .hamb_menu .hamb_btn span:nth-of-type(3) {
  top: 32px;
}
#header .header_nav .hamb_menu .hamb_btn.active {
  z-index: 9999;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background-color: #005EB0;
}
#header .header_nav .hamb_menu .hamb_btn.active span {
  background-color: #fff;
}
#header .header_nav .hamb_menu .hamb_btn.active span:nth-of-type(1) {
  top: 17px;
  transform: translateY(6px) rotate(-45deg);
}
#header .header_nav .hamb_menu .hamb_btn.active span:nth-of-type(2) {
  opacity: 0;
}
#header .header_nav .hamb_menu .hamb_btn.active span:nth-of-type(3) {
  top: 29px;
  transform: translateY(-6px) rotate(45deg);
}
#header .hamb_detail {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: #fff;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  #header .hamb_detail {
    top: 72px;
  }
}
#header .hamb_detail.active {
  display: block;
  z-index: 999;
}
#header .hamb_detail .detail_wrap .hamb_inner_list {
  position: relative;
  z-index: 999;
  width: 567px;
  max-width: 100%;
  padding: 38px 10px 120px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #header .hamb_detail .detail_wrap .hamb_inner_list {
    width: 390px;
    padding: 27px 4.1025641026vw 167px;
  }
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item + .item {
  margin-top: 40px;
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_ttl .big {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.55;
  color: #005EB0;
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_ttl .small {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #9F9F9F;
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail {
  margin-top: 16px;
  display: flex;
  gap: 15px;
  max-width: 560px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail {
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 16px;
  }
  #header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail::after {
    content: "";
    width: 100%;
  }
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .link_box {
  flex: 0 0 calc(33.333% - 15px);
}
@media only screen and (max-width: 767px) {
  #header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .link_box {
    flex: 0 0 calc(50% - 15px);
  }
  #header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .link_box:nth-child(n+3) {
    order: 1;
  }
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .link_box .txt_link {
  line-height: 1.5;
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .link_box .txt_link span {
  font-weight: 400;
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .link_box .txt_link .blank {
  padding-right: 17px;
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .link_box .txt_link .blank::after {
  width: 13px;
  height: 13px;
}
#header .hamb_detail .detail_wrap .hamb_inner_list .item .list_detail .img_txt {
  margin-top: 8px;
  font-size: 1.4rem;
  color: #005EB0;
}

/* ---------------------------------------
  フッター
--------------------------------------- */
#footer {
  padding: 40px 0;
  background-color: #1C1C1C;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #footer {
    padding: 24px 0;
  }
}
#footer a {
  color: #fff;
}
#footer .footer_top {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #footer .footer_top {
    flex-direction: column;
  }
}
#footer .footer_top .footer_logo {
  width: 310px;
}
@media only screen and (max-width: 767px) {
  #footer .footer_top .footer_logo {
    width: 79.4871794872vw;
  }
}
#footer .footer_top .footer_logo .logo_link img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(9%) saturate(502%) hue-rotate(220deg) brightness(118%) contrast(100%);
}
#footer .footer_top .footer_logo .btn {
  margin-top: 40px;
}
#footer .footer_top .footer_logo .btn .blank {
  position: relative;
  display: block;
  width: 180px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 10px 11px 7px;
  border: 2px solid #fff;
  border-radius: 30px;
}
#footer .footer_top .footer_logo .btn .blank::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  bottom: 0;
  right: 11px;
  margin: auto;
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-mask-image: url("/solutionnext/assets/img/icon_blank.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("/solutionnext/assets/img/icon_blank.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
}
#footer .footer_top .footer_logo .btn .blank:hover {
  opacity: 1;
  color: #1C1C1C;
  background-color: #fff;
}
#footer .footer_top .footer_logo .btn .blank:hover::after {
  background-color: #1C1C1C;
}
#footer .footer_top .footer_list {
  display: flex;
  margin-left: 40px;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #footer .footer_top .footer_list {
    flex-wrap: wrap;
    margin-left: 0;
    margin-top: 40px;
  }
  #footer .footer_top .footer_list::after {
    content: "";
    width: 100%;
  }
}
#footer .footer_top .footer_list .item {
  font-size: 1.4rem;
}
#footer .footer_top .footer_list .item:nth-child(n+2) {
  margin-left: 64px;
}
@media only screen and (max-width: 960px) {
  #footer .footer_top .footer_list .item:nth-child(n+2) {
    margin-left: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer_top .footer_list .item:nth-child(n+2) {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer_top .footer_list .item:nth-child(n+3) {
    margin-top: 40px;
    order: 1;
  }
  #footer .footer_top .footer_list .item:nth-child(3n) {
    margin-left: 0;
  }
}
#footer .footer_top .footer_list .item .item_ttl {
  font-weight: 700;
  line-height: 1.5;
}
#footer .footer_top .footer_list .item .item_ttl .txt_link {
  font-size: 1.4rem;
  line-height: 1.5;
}
#footer .footer_top .footer_list .item .link_detail {
  margin-top: 24px;
}
#footer .footer_top .footer_list .item .link_detail .txt {
  margin-top: 16px;
}
#footer .footer_top .footer_list .item .link_detail .link_sub {
  margin-bottom: 1em;
}
#footer .footer_top .footer_list .item .link_detail .link_sub .sub_txt {
  margin-top: 2px;
}
#footer .footer_top .footer_list .item .link_detail .txt_link {
  font-size: 1.4rem;
  line-height: 1.5;
}
#footer .footer_top .footer_list .item .link_detail .txt_link span {
  font-weight: 400;
}
#footer .footer_top .footer_list .item .link_detail .txt_link .blank {
  padding-right: 19px;
}
#footer .footer_top .footer_list .item .link_detail .txt_link .blank::after {
  width: 14px;
  height: 14px;
  background: none;
  background-color: #fff;
  -webkit-mask-image: url(/solutionnext/assets/img/icon_blank.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(/solutionnext/assets/img/icon_blank.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
}
#footer .footer_btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 93px;
}
@media only screen and (max-width: 767px) {
  #footer .footer_btm {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }
}
#footer .footer_btm .btm_left {
  display: flex;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #footer .footer_btm .btm_left {
    flex-direction: column;
  }
}
#footer .footer_btm .btm_left .txt + .txt {
  margin-left: 28px;
}
@media only screen and (max-width: 767px) {
  #footer .footer_btm .btm_left .txt + .txt {
    margin-left: 0;
  }
}
#footer .footer_btm .copy {
  font-size: 1.2rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  #footer .footer_btm .copy {
    margin-top: 16px;
  }
}

/* topへ戻る
-------------------- */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .back-top {
    bottom: 12px;
    right: 3.0769230769vw;
  }
}
.back-top a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 4px 2px 6px rgba(0, 0, 0, 0.08);
}
.back-top a::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 9px;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #005EB0;
  border-left: 3px solid #005EB0;
  transform: rotate(45deg);
}
.back-top a:hover {
  opacity: 1;
}

/* ---------------------------------------
  その他
--------------------------------------- */
/* 各要素をふわっと表示させる
------------------------------ */
.fade_in {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}
.fade_in.is_fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* フッター上のスライド（Topicsや関連情報など）
-------------------------------------------- */
.slide_list_wrap {
  max-width: 1260px;
  margin: 40px auto 0;
  padding: 0 30px;
}
@media only screen and (max-width: 1440px) {
  .slide_list_wrap {
    padding: 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap {
    padding: 0 0 0 10.2564102564vw;
  }
}
.slide_list_wrap .slide_list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  /*矢印の位置*/
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list {
    padding: 0 !important;
    margin: 0 auto 0 0;
    flex-direction: column;
    gap: 50px;
  }
}
.slide_list_wrap .slide_list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.slide_list_wrap .slide_list img {
  width: 100%;
  height: auto;
}
.slide_list_wrap .slide_list .slick-slide {
  margin: 0 15px;
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-slide {
    width: 74.8717948718vw;
    margin: 0 0 0 24px;
  }
}
.slide_list_wrap .slide_list .slide_ttl {
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.6rem;
}
.slide_list_wrap .slide_list .slide_txt {
  margin-top: 8px;
  font-size: 1.4rem;
}
.slide_list_wrap .slide_list .btn {
  margin-top: auto;
  padding-top: 16px;
}
.slide_list_wrap .slide_list .btn .arrow {
  width: 100%;
}
.slide_list_wrap .slide_list .btn_hover {
  display: flex;
  flex-direction: column;
}
.slide_list_wrap .slide_list .btn_hover:hover {
  opacity: 1;
}
.slide_list_wrap .slide_list .btn_hover:hover .btn .arrow {
  opacity: 1;
  color: #fff;
  background-color: #1C1C1C;
  transition: 0.4s all;
}
.slide_list_wrap .slide_list .btn_hover:hover .btn .arrow::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.slide_list_wrap .slide_list .slick-prev,
.slide_list_wrap .slide_list .slick-next {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  z-index: 1;
}
@media only screen and (max-width: 1440px) {
  .slide_list_wrap .slide_list .slick-prev,
  .slide_list_wrap .slide_list .slick-next {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-prev,
  .slide_list_wrap .slide_list .slick-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -83px;
  }
}
.slide_list_wrap .slide_list .slick-prev::before,
.slide_list_wrap .slide_list .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 13px;
  width: 13px;
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-prev::before,
  .slide_list_wrap .slide_list .slick-next::before {
    height: 8px;
    width: 8px;
  }
}
.slide_list_wrap .slide_list .slick-prev {
  left: -75px;
}
@media only screen and (max-width: 1440px) {
  .slide_list_wrap .slide_list .slick-prev {
    left: -60px;
  }
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-prev {
    left: -8.2051282051vw;
  }
}
.slide_list_wrap .slide_list .slick-prev::before {
  left: 25px;
  transform: rotate(-135deg);
}
@media only screen and (max-width: 1440px) {
  .slide_list_wrap .slide_list .slick-prev::before {
    left: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-prev::before {
    left: 17px;
  }
}
.slide_list_wrap .slide_list .slick-next {
  right: -75px;
}
@media only screen and (max-width: 1440px) {
  .slide_list_wrap .slide_list .slick-next {
    right: -60px;
  }
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-next {
    right: 2.0512820513vw;
  }
}
.slide_list_wrap .slide_list .slick-next::before {
  right: 25px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1440px) {
  .slide_list_wrap .slide_list .slick-next::before {
    right: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-next::before {
    right: 17px;
  }
}
.slide_list_wrap .slide_list .slick-dots {
  bottom: auto;
  margin: 18px 0 0 0;
  top: 100%;
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap .slide_list .slick-dots {
    margin: 30px 0 0 0;
    padding-right: 10.2564102564vw;
  }
}
.slide_list_wrap .slide_list .slick-dots li {
  width: auto;
  height: auto;
  display: inline-block;
  margin: 0 10px;
}
.slide_list_wrap .slide_list .slick-dots li:only-child {
  display: none;
}
.slide_list_wrap .slide_list .slick-dots button {
  color: transparent;
  outline: none;
  width: 12px;
  /*ドットボタンのサイズ*/
  height: 12px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #b5b5b7;
  /*ドットボタンの色*/
}
.slide_list_wrap .slide_list .slick-dots button::before {
  content: none;
}
.slide_list_wrap .slide_list .slick-dots .slick-active button {
  background: #535354;
  /*ドットボタンの現在地表示の色*/
}

/*-- スライドが１つのとき --*/
@media only screen and (max-width: 767px) {
  .slide_list_wrap.only_one {
    padding: 0 12.5641025641vw;
  }
}
.slide_list_wrap.only_one .slide_list .item {
  width: 370px;
  margin: 0 15px;
}
@media only screen and (max-width: 1440px) {
  .slide_list_wrap.only_one .slide_list .item {
    width: 337px;
  }
}
@media only screen and (max-width: 1260px) {
  .slide_list_wrap.only_one .slide_list .item {
    width: 26.1904761905vw;
  }
}
@media only screen and (max-width: 767px) {
  .slide_list_wrap.only_one .slide_list .item {
    width: 100%;
    margin: 0;
  }
}/*# sourceMappingURL=contents.css.map */