@charset "UTF-8";

/*---------- ページ全体の指定 ----------*/

body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: #2e363d;
  background-color: #fff;
  font-family: "Noto Sans Japanese";
}


/*---------- リンク設定 ----------*/

a:link {
  color: #37859a;
  text-decoration: underline;
}

a:visited {
  color: #37859a;
  text-decoration: underline;
}

a:hover {
  color: #139eb1;
  text-decoration: none;
}

a {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a img {
  border-style: none;
}

img {
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

a img {
  border-style: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}


/*---------- ベーステキストの指定 ----------*/

p {
  font-size: 100%;
  line-height: 180%;
}

@media screen and (min-width:769px) {
  p {
    font-size: 18px;
  }
}


/*---------- 見出し ----------*/

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  font-weight: bold;
}


/*---------- PC・スマホの非表示指定 ----------*/

@media screen and (max-width:768px) {
  .spnone {
    display: none;
  }
}

@media screen and (min-width:769px) {
  .pcnone {
    display: none;
  }
}


/*------------------------------ フローティング ------------------------------*/

.floating {
  display: block;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  margin: 0;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.3);
}

.floating img {
  width: 95%;
  margin-bottom: 5px;
}

.enter {
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.enter a:link {
  color: #fff;
  text-decoration: none;
}

.enter a:visited {
  color: #fff;
  text-decoration: none;
}

.enter a:hover {
  color: #fff;
  text-decoration: none;
}

.button {
  width: 100%;
  margin: 0 auto;
  padding: 24px 0;
  font-size: 110%;
  font-weight: bold;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, #29d40c, #3f8103);
  border-bottom: solid 2px #3e5802;
  border-radius: 10px;
}

.button:hover {
  opacity: 1;
  filter: brightness(120%);
}

@media screen and (min-width:769px) {
  .floating {
    padding: 15px 0;
  }

  .floating img {
    width: 600px;
  }

  .button {
    width: 600px;
    padding: 24px 0;
    font-size: 24px;
  }
}


.device {
  margin: 0;
  padding: 0 30px 45px 30px;
  text-align: center;
}

.device a:link {
  color: #fff;
  text-decoration: none;
}

.device a:visited {
  color: #fff;
  text-decoration: none;
}

.device a:hover {
  color: #fff;
  text-decoration: none;
}

.btn {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 120%;
  font-weight: bold;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, #29d40c, #3f8103);
  border-bottom: solid 2px #3e5802;
  border-radius: 10px;
}

.btn:hover {
  opacity: 1;
  filter: brightness(120%);
}

@media screen and (min-width:769px) {
  .device {
    padding: 0 0 90px 0;
  }

  .btn {
    width: 480px;
    font-size: 24px;
  }
}

.yureru {
  animation: yureru 2s infinite;
}

@keyframes yureru {
  0% {
    transform: translate(0px, 3px);
  }

  5% {
    transform: translate(0px, -3px);
  }

  10% {
    transform: translate(0px, 3px);
  }

  15% {
    transform: translate(0px, -3px);
  }

  20% {
    transform: translate(0px, 3px);
  }

  25% {
    transform: translate(0px, -3px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}



/*------------------------------ コンテンツ部分 ------------------------------*/

.header {
  width: 100%;
  margin: 0;
  background: transparent;
  /* 必要に応じて */
}

.header_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0 20px;
  /* 左右に余白・上に20px */
  box-sizing: border-box;
}

.head_logo {
  flex-shrink: 0;
  text-align: left;
}

.head_logo img {
  width: 500px;
  /* お好みで調整 */
  height: auto;
  display: block;
}

.head_nav {
  flex-grow: 1;
  text-align: right;
}

.head_nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

.head_nav ul li a {
  padding: 8px 0;
  font-size: 18px;
  font-weight: bold;
  color: #2e363d;
  text-decoration: none;
  transition: color .3s;
}

.head_nav ul li a:hover {
  color: #f88a2c;
}

.mv {
  margin: 0;
  padding: 15px 0 0 0;
  text-align: center;
  width: 100%;
}

.mv img {
  max-width: 1140px;
}

.mv_cp {
  margin: 0;
  padding: 15px 0 0 0;
  text-align: center;
}

.mv_cp img {
  width: 100%;
}

@media screen and (min-width:240px) and (max-width:768px) {
  .head_nav {
    display: none;
  }

  .header_inner {
    margin: 0 auto;
    padding: 0;
  }

  .header {
    margin: 0;
    padding: 20px 0 0 0;
  }

  .head_logo {
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .head_logo img {
    width: 350px;
  }

  .mv {
    width: 100%;
    margin: 0 auto;
  }

  .mv img {
    max-width: 90%;
  }

}


#detail_bg {
  margin: 0;
  padding: 0 0 45px 0;
  background: #fef4ea;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#detail_bg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fcebd7;
  transform-origin: bottom right;
  transform: skewY(-55deg);
  z-index: -1;
}

#detail2_bg {
  margin: 0;
  padding: 30px 10px 45px 10px;
  background: #fef4ea;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#detail2_bg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fcebd7;
  transform-origin: bottom right;
  transform: skewY(-55deg);
  z-index: -1;
}

.detail_top {
  margin: 0 10px 0 10px;
  padding: 20px 0;
  font-size: 150%;
  font-weight: bold;
  line-height: 100%;
  text-align: center;
  border-radius: 20px 20px 0 0;
  color: #fff;
  background: #faab34;
}

.detail_list {
  margin: 0 10px 45px 10px;
  padding: 5px 25px 30px 25px;
  border-radius: 0 0 20px 20px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.detail_list img {
  width: 100%;
}

.detail_list ul {
  margin: 0;
  padding: 0;
}

@media screen and (min-width:240px) and (max-width:768px) {
  .detail_list ul li {
    margin: 5px 0;
    padding: 10px 0 10px calc(1em + 10px);
    font-size: 180%;
    font-weight: bold;
    line-height: 200%;
    list-style: none;
    position: relative;
    border-bottom: 1px dotted #ccc;
  }

  .detail_list ul li::before {
    position: absolute;
    top: 10px;
    left: 0;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    color: #f88a2c;
  }
}

.detail_sub {
  margin: 0;
  padding: 0;
  font-size: 160%;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
}

.detail_box {
  margin: 20px auto 30px auto;
  padding: 10px 20px 0 20px;
  display: grid;
  gap: 10px 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.detail {
  margin: 0;
  padding: 10px 0;
  font-size: 70%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.detail_txt {
  margin: 0 auto;
  padding: 0 20px;
  font-size: 100%;
  line-height: 180%;
}

@media screen and (min-width:769px) {
  #detail_bg {
    padding: 0 30px 60px 30px;
  }

  #detail_bg::before {
    transform: skewY(-53deg);
  }

  #detail2_bg {
    padding: 60px 30px 60px 30px;
  }

  #detail2_bg::before {
    transform: skewY(-53deg);
  }

  .detail_top {
    max-width: 1140px;
    margin: 0 auto;
    font-size: 36px;
  }

  .detail_list {
    max-width: 1140px;
    margin: 0 auto 60px auto;
    padding: 20px 60px 30px 60px;
  }

  .detail_list ul li {
    margin: 15px 0 5px 0;
    padding: 0 0 0 calc(1em + 15px);
    font-size: 150%;
    font-weight: bold;
    line-height: 200%;
    list-style: none;
    position: relative;
  }

  .detail_list ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    color: #f88a2c;
  }

  .detail_sub {
    font-size: 36px;
  }

  .detail_box {
    max-width: 1140px;
    margin: 30px auto 30px auto;
    padding: 0;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 2fr));
  }

  .detail {
    padding: 20px 10px;
    font-size: 18px;
    display: grid;
    place-content: center;
    word-break: keep-all;
    border: 1px solid #eee;
  }

  .detail_txt {
    max-width: 600px;
    font-size: 18px;
    text-align: center;
  }
}


#about_bg {
  margin: 0;
  padding: 60px 20px 45px 20px;
  background: #fff;
}

.mark {
  margin: 0 0 10px 0;
  padding: 20px 0 0;
  text-align: center;
}

.mark img {
  width: 60px;
}

.about_subhead {
  margin: 0 auto;
  padding: 0 20px 10px 20px;
  font-size: 160%;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
}

.about_intro {
  margin: 0 auto;
  padding: 0 20px;
}

.reason_bg {
  margin: 45px auto 0 auto;
  padding: 0 0 45px 0;
  border-radius: 20px;
  background: #fef4ea;
}

@media screen and (min-width:240px) and (max-width:768px) {
  .reason_top {
    margin: 0 0 30px 0;
    padding: 20px 0;
    font-size: 160%;
    font-weight: 900;
    line-height: 150%;
    text-align: center;
    color: #fff;
    background: #faab34;
    border-radius: 20px 20px 0 0;
  }
}

.reason_box {
  margin: -5px 20px 0 20px;
  padding: 0;
}

.reason_item {
  margin: 45px 0 0 0;
  padding: 1px 0 0 0;
  border-radius: 8px;
  background: #fff;
}

.reason_nubmer {
  margin: -10px 0 0 0;
  padding: 0 0 20px 0;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
}

.reason_nubmer span {
  padding: 6px 13px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(to bottom, #faab34, #f8872b);
}

.reason_title {
  margin: 0;
  padding: 0 20px;
  font-size: 150%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

.reason_pict {
  margin: 20px 0 20px 0;
  padding: 0;
  text-align: center;
}

.reason_pict img {
  width: 45%;
}

.reason_txt {
  margin: 0 auto;
  padding: 0 30px 20px 30px;
  font-size: 100%;
  line-height: 180%;
}

.about_memo {
  margin: 0 auto;
  padding: 45px 0 45px 0;
  text-align: center;
}

.about_copy {
  margin: 0 auto;
  padding: 10px 20px 30px 20px;
  font-size: 130%;
  line-height: 160%;
}

.about_txt {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 180%;
}

@media screen and (min-width:769px) {
  #about_bg {
    margin: 0 auto;
    padding: 90px 30px;
  }

  .mark img {
    width: 60px;
  }

  .about_subhead {
    margin: 10px 0 35px 0;
    font-size: 36px;
  }

  .about_intro {
    max-width: 740px;
  }

  .about_copy {
    max-width: 740px;
    text-align: center;
    /* テキストを中央揃え */
    margin: 0 auto;
    /* 要素自体を中央揃え */
    padding: 10px 0;
    /* 上下の余白を追加 */
    font-size: 28px;
  }

  .about_copy p {
    text-align: left;
    font-size: 18px;
  }

  .reason_bg {
    max-width: 1240px;
    margin: 60px auto 0 auto;
    padding: 60px 0 75px 0;
  }

  .reason_top {
    margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: 900;
    line-height: 150%;
    text-align: center;
    color: #f78421;
  }

  .reason_box {
    margin: 0 5%;
    display: grid;
    gap: 0 30px;
    grid-template-columns: 1fr 1fr;
  }

  .reason_item {
    margin: 60px 0 0 0;
    padding: 0;
  }

  .reason_title {
    font-size: 28px;
  }

  .reason_pict img {
    width: 40%;
  }

  .reason_txt {
    font-size: 16px;
    line-height: 200%;
  }

  .about_memo {
    padding: 60px 0 45px 0;
  }

  .about_txt {
    font-size: 18px;
  }

}


.feature_bg {
  margin: 45px auto 45px auto;
  padding: 0 0 15px 0;
  border-radius: 20px;
  background: #fef4ea;
}

@media screen and (min-width:240px) and (max-width:768px) {
  .feature_top {
    margin: 0 0 30px 0;
    padding: 20px 0;
    font-size: 160%;
    font-weight: 900;
    line-height: 150%;
    text-align: center;
    color: #fff;
    background: #faab34;
    border-radius: 20px 20px 0 0;
  }
}

.feature_box {
  margin: 0 auto;
  padding: 30px 20px 0 20px;
}

.feature {
  margin: 0 0 30px 0;
  padding: 25px 30px 25px 30px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.feature_check {
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 150%;
  line-height: 100%;
  text-align: center;
  color: #feb52a;
}

.feature_title {
  margin: 0;
  padding: 0;
  font-size: 150%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  min-height: 50px;
  /* 最小高さを設定 */
  display: flex;
  /* フレックスボックスを使用 */
  align-items: center;
  /* 縦方向に中央揃え */
  justify-content: center;
  /* 横方向に中央揃え */
}

.feature_pict {
  margin: 0 auto;
  padding: 20px;
  max-height: 400px;
  /* 高さを固定 */

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* はみ出た部分を隠す */
}

.feature_pict2 {
  margin: 0 auto;
  padding: 20px;
}

.feature_pict img {
  width: 100%;
  height: 100%;
  /* 親要素の高さに合わせる */
  object-fit: cover;
  /* 画像をトリミングして高さを揃える */
}

.feature_pict2 img {
  width: 80%;
}

.feature_txt {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 180%;
  text-align: justify;
}

@media screen and (min-width:769px) {
  .feature_bg {
    margin: 60px auto 90px auto;
    padding: 60px 0 75px 0;
  }

  .feature_top {
    margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: 900;
    line-height: 150%;
    text-align: center;
    color: #f78421;
  }

  .feature_pict img {
    width: 100%;
  }

  .feature_pict2 img {
    max-width: 1240px;
  }

  .feature_box {
    max-width: 1240px;
    margin: 45px auto 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .feature_copy {
    max-width: 1140px;
    text-align: center;
    /* テキストを中央揃え */
    margin: 0 auto;
    /* 要素自体を中央揃え */
    padding: 20px 0 10px;
    /* 上下の余白を追加 */
  }

  .feature_copy p {
    font-size: 18px;
  }

  .feature {
    width: 32%;
    margin: 0;
    padding: 25px 20px 20px 20px;
  }

  .feature_check {
    padding: 0 0 10px 0;
    font-size: 24px;
  }

  .feature_title {
    font-size: 24px;
  }

  .feature_txt {
    font-size: 16px;
  }
}

.answer_sub {
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 120%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

.answer_top {
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 300%;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
}

.answer_box {
  margin: 0;
  padding: 0;
}

.answer_pict {
  margin: 0;
  padding: 0 20px;
}

.answer_pict img {
  width: 100%;
  border-radius: 5px;
}

.answer_txt {
  margin: 0;
  padding: 10px 20px;
}

@media screen and (min-width:769px) {
  .answer_sub {
    font-size: 36px;
  }

  .answer_top {
    padding: 0 0 30px 0;
    font-size: 48px;
  }

  .answer_box {
    max-width: 1240px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .answer_pict {
    width: 48%;
    padding: 20px 0 0 0;
  }

  .answer_txt {
    width: 48%;
    padding: 0;
  }
}


#device_bg {
  margin: 0;
  padding: 60px 0 30px 0;
  background: #fef4ea;
  border-bottom: 1px solid #fcebd7;
}


.device_title {
  margin: 0;
  padding: 0;
  text-align: center;
}

.device_title img {
  width: 100%;
}

.offer_top {
  margin: 0;
  padding: 20px 0 15px 0;
  font-size: 120%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

.offer_top span {
  padding: 5px 20px;
  color: #fff;
  background: linear-gradient(to bottom, #faab34, #f8872b);
}

.offer_title {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 150%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

.offer_pict {
  margin: 0 20px;
  padding: 0;
  text-align: center;
}

.offer_pict img {
  width: 100%;
}

.prf_top {
  margin: 0;
  padding: 45px 0 20px 0;
  font-size: 150%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

.prf_box {
  margin: 0 auto;
  padding: 0 20px;
}

.prf_pict {
  margin: 0;
  padding: 0;
  text-align: center;
}

.prf_pict img {
  width: 50%;
  border-radius: 5px;
}

.prf_txt {
  margin: 0;
  padding: 0;
}

.prf_degree {
  margin: 0;
  padding: 15px 0 0 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
}

.prf_name {
  margin: 0;
  padding: 5px 0;
  font-size: 150%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width:769px) {
  #device_bg {
    padding: 60px 30px 90px 30px;
    border-bottom: none;
  }

  .device_title {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 5% 0 10%;
  }

  .offer_top {
    padding: 20px 0;
    font-size: 24px;
  }

  .offer_title {
    margin: 0 0 30px 0;
    font-size: 36px;
  }

  .offer_pict {
    width: 60%;
    margin: 0 auto;
  }

  .prf_top {
    padding: 90px 0 60px 0;
    font-size: 36px;
  }

  .prf_box {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 0 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .prf_pict {
    width: 320px;
  }

  .prf_pict img {
    width: 100%;
  }

  .prf_txt {
    flex: 1;
    padding: 0 0 0 45px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .prf_txt p {
    font-size: 16px;
  }

  .prf_degree {
    padding: 0;
    font-size: 18px;
    text-align: left;
  }

  .prf_name {
    font-size: 28px;
    text-align: left;
  }
}

/*------------------------------ アイキャッチ下トピック動画 ------------------------------*/

.topic_bg {
  margin: 0 auto;
  padding: 40px 0 20px;
  font-size: 180%;
  font-weight: 900;
  line-height: 130%;
  text-align: center;
  border-radius: 20px;
  max-width: 80%;
}

.topic_title img {
  width: 240px;
}

.topic_box {
  margin: 0 auto;
  padding: 0 20px 30px 20px;
}

.topic_movie {
  margin: 0;
  padding: 0 0 5px 0;
}

.topic_pict {
  margin: 0;
  padding: 0 0 5px 0;
}

.topic_pict img {
  width: 100%;
}


.topic_txt {
  margin: 0 auto;
  padding: 10px 0;
  width: calc(100% - 40px);
  box-sizing: border-box;
  border-bottom: 1px solid #2e363d;
}

.topic_txt p {
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 2px;
  text-align: left;
  font-weight: 600 !important;
  /* フォントの太さを900に設定 */
}

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

  .topic_box {
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1140px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }

  .topic_movie {
    width: 48%;
    padding: 25px 0;
    order: 1;
  }

  .topic_pict {
    width: 48%;
    padding: 25px 0 0 0;
    order: 1;
  }

  .topic_txt {
    width: 48%;
    height: 310px;
    order: 2;
    border-top: 1px solid #2e363d;
    border-bottom: 1px solid #2e363d;
  }

  .topic_txt p {
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 2px;
    text-align: left;
    display: flex;
    /* フレックスボックスを使用 */
    align-items: center;
    /* 縦方向に中央揃え */
    justify-content: center;
    /* 必要に応じて横方向も中央揃え */
    height: 100%;
    /* 親要素の高さに合わせる */
    margin: 0;
    /* 不要な余白を削除 */
  }
}

/* 6つの成果指標カードver */
.performance_section {
  padding: 40px 20px;
  text-align: center;
  max-width: 1140px;
  margin: auto;
}

.card {
  width: calc(33.333% - 20px);
  /* PC時：3列にする */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.card_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card_icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.card_title {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.card_number {
  display: block;
  width: 85%;
  font-size: 36px;
  font-weight: bold;
  background-color: #f8842b;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 5px;
}

.card_number.accent {
  padding: 4px 14px;
}

.card_label {
  font-size: 28px;
  color: #f8842b;
  font-weight: bold;
}

.card_caption {
  font-size: 11px;
  color: #666;
  margin-top: 5px;
  line-height: 1.4;
}

.disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
  text-align: right;
}

@media (max-width: 768px) {
  .card_container {
    justify-content: center;
  }

  .performance_section {
    padding: 10px 20px;
    text-align: center;
    margin: auto;
  }

  .card {
    width: calc(100% - 10px);
    /* gapを考慮して幅調整 */
  }

  .card_icon {
    width: 60px;
    height: 60px;
  }

  .card_title {
    font-size: 24px;
  }

  .card_number {
    font-size: 24px;
  }

  .card_label {
    font-size: 24px;
  }

  .card_caption {
    font-size: 10px;
  }

  .disclaimer {
    font-size: 10px;
  }
}


/*------------------------------ 成功事例追加部分 ------------------------------*/
#success_bg {
  margin: 0;
  padding: 20px 20px 45px 20px;
}

.success_sub {
  margin: 0;
  padding: 20px 0 10px;
  font-size: 160%;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
}

.success_box {
  margin: 0 auto;
  padding: 30px 20px 0 20px;
}

.success {
  margin: 0 0 30px 0;
  padding: 25px 20px 25px 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: #f17725 1px solid;
}

.success_check {
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 150%;
  line-height: 100%;
  text-align: center;
  color: #feb52a;
}

.success_title {
  margin: 0;
  padding: 0;
  font-size: 120%;
  font-weight: bold;
  line-height: 150%;
  text-align: left;
}

.success_pict {
  margin: 0 auto;
  padding: 0;
}

.success_pict img {
  width: 100%;
}

.success_txt {
  margin: 0 auto;
  padding: 10px 0 0 0;
  font-size: 100%;
  line-height: 180%;
}

@media screen and (min-width:769px) {
  #success_bg {
    padding: 30px 0 90px 0;
  }

  .success_box {
    max-width: 1140px;
    margin: 10px auto 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .success_sub {
    margin: 0;
    padding: 60px 0 0 0;
    font-size: 36px;
  }

  .success {
    width: 32%;
    margin: 0;
    padding: 25px 20px 20px 20px;
  }

  .success_check {
    padding: 0 0 10px 0;
    font-size: 24px;
  }

  .success_title {
    font-size: 24px;
  }

  .success_txt {
    margin: 0 auto;
    font-size: 16px;
  }
}

.success2_top {
  margin: 60px 0 0 0;
  padding: 0;
  font-size: 180%;
  font-weight: 900;
  line-height: 130%;
  text-align: center;
}

.success2_title {
  margin: 0 0 30px 0;
  padding: 0;
  text-align: center;
}

.success2_title img {
  width: 240px;
}

.success2_box {
  margin: 0 20px 45px 20px;
  padding: 0;
}

.success2_pict {
  margin: 0;
  padding: 0 0 5px 0;
}

.success2_pict img {
  width: 100%;
}

.success2_txt {
  margin: 0;
  padding: 0;
}

@media screen and (min-width:769px) {
  .success2_box {
    width: 1180px;
    margin: 0 auto 45px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .success2_pict {
    width: 48%;
    padding: 25px 0 0 0;
    order: 1;
  }

  .success2_txt {
    width: 48%;
    order: 2;
  }

  .success2_txt p {
    font-size: 18px;
  }
}

/* テーブル要素 */
.success_tablebox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  background: #fff;
  /* 背景を白に */
  padding: 10px;
  /* 上下に余白を追加 */
}

.success_column {
  flex: 1 1 16%;
  box-sizing: border-box;
  border-right: 1px solid #f8842b;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.success_column.last {
  border-right: none;
}

.success_th {
  border-bottom: 2px solid #f8842b;
  font-size: 21px;
  color: #f8842b;
  font-weight: bold;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success_th span {
  padding: 0 8px;
  background: #fff;
  white-space: normal;
  /* ← これが改行有効のカギ！ */
  line-height: 1.4;
}


.success_td {
  font-size: 18px;
  line-height: 1.2;
  /* ← 少し狭く */
  margin-top: 10px;
  color: #000;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.success_td .num {
  padding-top: 5px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  /* ← 数字の下の余白をさらに減らす */
}


@media (max-width: 768px) {
  .success_tablebox {
    flex-direction: column;
  }

  .success_column {
    width: 100%;
    border-right: none;
    border-bottom: 1px dotted #f8842b;
  }

  .success_column.last {
    border-bottom: none;
  }
}

.success_note {
  width: 100%;
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-top: 20px;
  padding-right: 10px;
  box-sizing: border-box;
}

/* ------------------------ 各種ツール紹介 ------------------------------ */

.tool_top {
  margin: 60px 0 0 0;
  padding: 0;
  font-size: 180%;
  font-weight: 900;
  line-height: 130%;
  text-align: center;
}

.tool_eng {
  margin: 0;
  padding: 15px 0 30px 0;
  font-size: 80%;
  font-weight: bold;
  line-height: 100%;
  text-align: center;
  letter-spacing: 3px;
  text-indent: 3px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #f8872b;
}

.tool_title {
  margin: 0 0 30px 0;
  padding: 0;
  text-align: center;
}

.tool_title img {
  width: 240px;
}

.tool_box {
  margin: 0 20px 45px 20px;
  padding: 0;
}

.tool_movie {
  margin: 0;
  padding: 0 0 5px 0;
}

.tool_pict {
  margin: 0;
  padding: 0 0 5px 0;
}

.tool_pict img {
  width: 100%;
}

.video {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.tool_txt {
  margin: 0;
  padding: 0;
}

ul.tool_point {
  margin: 20px 0;
  padding: 15px 0 20px 10px;
  list-style: none;
  border-top: solid 1px #f8872b;
  border-bottom: solid 1px #f8872b;
}

ul.tool_point li {
  position: relative;
  padding: 5px 0 0 2em;
  margin: 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 180%;
}

ul.tool_point li::before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f00c';
  color: #f8872b;
}

.note {
  font-size: 60%;
  vertical-align: top;
}

.tool_caption {
  margin: 0;
  padding: 0;
  font-size: 80%;
  line-height: 180%;
  opacity: 0.7;
}

.tool_memo {
  margin: 10px 20px 0 20px;
  padding: 0;
  font-size: 80%;
  line-height: 180%;
  opacity: 0.7;
}

@media screen and (min-width:769px) {
  .tool_top {
    padding: 0;
    /* 内側の余白を追加 */
    font-size: 36px;
    /* フォントサイズを拡大 */
    font-weight: bold;
    /* 太字を維持 */
    line-height: 140%;
    /* 行間を少し広げる */
    text-align: center;
    /* 中央揃えを維持 */
    color: #000000;
    /* テキストカラーを変更 */
  }

  .tool_eng {
    padding: 30px 0 60px 0;
    font-size: 16px;
  }

  .tool_box {
    width: 1180px;
    margin: 0 auto 45px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .tool_movie {
    width: 48%;
    padding: 25px 0 0 0;
    order: 2;
  }

  .tool_pict {
    width: 48%;
    padding: 25px 0 0 0;
    order: 2;
  }

  .tool_txt {
    width: 48%;
    order: 1;
  }

  .tool_txt p {
    font-size: 18px;
  }

  ul.tool_point {
    margin: 30px 0;
  }

  ul.tool_point li {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .tool_caption {
    font-size: 12px;
  }

  .tool_memo {
    width: 724px;
    margin: 10px auto 0 auto;
    font-size: 12px;
  }
}

/*------------------------------ フッター前インフォ ------------------------------*/

.info_no1 {
  margin: 0 20px 30px 20px;
  padding: 0;
  text-align: center;
}

.info_no1 img {
  width: 100%;
}

.info_caption {
  margin: 30px 0 0 0;
  padding: 0;
  font-size: 75%;
  line-height: 180%;
  color: #666;
}

.info_company {
  margin: 0;
  padding: 0;
  font-size: 150%;
  line-height: 150%;
  text-align: center;
}

.info_name {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 150%;
  text-align: center;
}

.info_logo {
  margin: 0;
  padding: 10px 0 15px 0;
  text-align: center;
}

.info_logo img {
  width: 160px;
}

.info_ad {
  margin: 0;
  padding: 0;
  font-size: 80%;
  line-height: 180%;
  text-align: center;
}

.info_mark {
  margin: 10px 0 30px 0;
  padding: 0;
  text-align: center;
}

.info_mark img {
  width: 60%;
}

@media screen and (min-width:769px) {
  .info_no1 {
    margin: 45px 0;
  }

  .info_no1 img {
    width: 736px;
  }

  .info_caption {
    font-size: 12px;
  }

  .info_company {
    font-size: 24px;
  }

  .info_name {
    font-size: 16px;
  }

  .info_logo img {
    width: 200px;
  }

  .info_ad {
    font-size: 12px;
  }

  .info_mark {
    margin: 15px 0 45px 0;
  }

  .info_mark img {
    width: 400px;
  }
}


/*------------------------------ フッター ------------------------------*/

#footer {
  margin: 0 auto;
  padding: 30px 0 60px;
  font-size: 80%;
  line-height: 150%;
  text-align: center;
  color: #fff;
  background: #00031f;
}

@media screen and (min-width:769px) {
  #footer {
    margin: 0 auto;
    padding: 30px 0 120px;
    font-size: 12px;
  }
}

/*---------- 20241118＿7大特典表示用box追加 ----------*/
.tokuten_bg {
  margin: 45px 10px;
  padding: 0 0 45px 0;
  background-color: #fff;
  border-radius: 20px;
}

.tokuten_1bg {
  margin: 45px 10px;
  padding: 0 0 45px 0;
  border-radius: 20px;
  background-color: #fff;
}

@media screen and (min-width:240px) and (max-width:768px) {
  .tokuten_top {
    margin: 0 0 30px 0;
    padding: 20px 0;
    font-size: 160%;
    font-weight: 900;
    line-height: 150%;
    text-align: center;
    color: #fff;
    background: #faab34;
    border-radius: 20px 20px 0 0;
  }

}

.tokuten_box {
  max-width: 1240px;
  margin: -5px 20px 0 20px;
  padding: 0;

}

.tokuten_box {
  margin: 30px auto 0 auto;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.tokuten_box img {
  margin: 0 auto;
  text-align: center;
  width: 95%;
}

.tokuten_item {
  margin: 0 0 20px 0;
  padding: 1px 0 0 0;
  border-radius: 8px;
}

.tokuten_nubmer {
  margin: -10px 0 0 0;
  padding: 0 0 20px 0;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
}

.tokuten_nubmer span {
  padding: 6px 13px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(to bottom, #faab34, #f8872b);
}

.tokuten_title {
  margin: 0;
  padding: 0;
  font-size: 120%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}

.tokuten_sub {
  margin: 0 auto;
  padding: 0 30px 20px 30px;
  font-size: 110%;
  line-height: 150%;
  font-weight: 600;
  text-align: center;
}

.tokuten_pict {
  margin: 20px 0 20px 0;
  padding: 10px 0;
  text-align: center;
}

.tokuten_pict img {
  width: 90%;
}

.tokuten_txt {
  margin: 0 auto;
  padding: 0 30px 20px 30px;
  font-size: 100%;
  line-height: 180%;
}

@media screen and (min-width:769px) {
  .tokuten_bg {
    margin: 30px auto 90px auto;
    padding: 30px 0 75px 0;
    background-color: #fff;
    max-width: 1240px;
  }

  .tokuten_1bg {
    margin: 0 auto 90px auto;
    padding: 30px 0 75px 0;
    background-color: #fcebd7;
    background-color: transparent;
  }

  .tokuten_top {
    display: none;
  }

  .tokuten_item {
    margin: 20px 5px;
    padding: 10px;
    width: 28%;
    max-height: 600px;
    background: #fef4ea;
  }

  .tokuten_title {
    height: 50px;
    font-size: 20px;
  }

  .tokuten_sub {
    font-size: 18px;
  }

  .tokuten_pict img {
    width: 90%;
    vertical-align: bottom
  }

  .tokuten_txt {
    font-size: 16px;
    line-height: 180%;
  }

  .tokuten_box img {
    margin: 0 auto;
    text-align: center;
    width: 95%;
  }
}

.video {
  margin: 0 auto;
  padding-top: 56.25%;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

.video:before {
  content: "";
  display: block;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.video_bg {
  margin: 45px 10px;
  padding: 0 0 45px 0;
}

@media screen and (min-width:769px) {
  .video_bg {
    margin: 30px auto 60px auto;
    padding: 30px 0 30px 0;
  }
}

/*------------------------------ スケジュール ------------------------------*/

.schedule_box {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.schedule_section {
  margin: 0 auto;
  padding: 10px 5px;
  /* パディングを減らして縦幅を調整 */
  max-width: 1140px;
  box-sizing: border-box;
}

.schedule_header {
  background-color: #f78421;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  /* パディングを減らして高さを調整 */
  font-weight: bold;
  font-size: 1em;
  /* フォントサイズを少し小さく */
}

.schedule_exe {
  color: #b1550a;
  text-align: center;
  padding: 5px;
  /* パディングを減らして高さを調整 */
  font-weight: bold;
  font-size: 1em;
  /* フォントサイズを少し小さく */
  border-bottom: thick double #f78421;

}

.schedule_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  /* マージンを減らして縦幅を調整 */
  border-bottom: 1px solid #f78421;
  padding: 5px 0;
  /* パディングを減らして高さを調整 */
}

.schedule_list {
  width: 100%;
  margin: 0;
  padding: 0;
}

.schedule_date {
  flex: 1;
  width: 30%;
  margin: 0;
  padding: 2px 5px;
  /* パディングを減らして高さを調整 */
  color: #000;
  text-align: right;
  font-weight: bold;
  font-size: 1em;
  /* フォントサイズを少し小さく */
}

.schedule_date_list {
  width: 55%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule_date_list>li {
  width: 44%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  gap: 40px;
}

.schedule_label {
  width: 90px;
  text-align: left;
  font-weight: bold;
}

.schedule_time {
  flex: 1;
  width: 70%;
  padding: 2px 5px;
  /* パディングを減らして高さを調整 */
  text-align: left;
  font-size: 0.9em;
  /* フォントサイズを少し小さく */
}

.highlight_red {
  display: inline-block;
  /* インライン要素をブロック化 */
  margin: 0 5px 0 0;
  /* 左側のマージンを減らして調整 */
  padding: 2px 5px;
  /* 内側の余白を設定 */
  font-size: 60%;
  /* フォントサイズを90%に設定 */
  line-height: 160%;
  color: #aa0707;
  /* 文字色 */
  vertical-align: middle;
  /* 中央揃え */
  border: 1px solid #aa0707;
  border-radius: 3px;
  /* background-color: #f0f9f9; */
}

.highlight_bk {
  display: inline-block;
  /* インライン要素をブロック化 */
  margin: 0 5px 0 0;
  /* 左側のマージンを減らして調整 */
  padding: 2px 5px;
  /* 内側の余白を設定 */
  font-size: 60%;
  /* フォントサイズを90%に設定 */
  line-height: 160%;
  color: #313131;
  /* 文字色 */
  vertical-align: middle;
  /* 中央揃え */
  /* border: 1px solid #049683; */
  border-radius: 3px;
  /* background-color: #f0f9f9; */
}

.highlight {
  display: inline-block;
  /* インライン要素をブロック化 */
  margin: 0 0 0 5px;
  /* 左側のマージンを減らして調整 */
  padding: 2px 5px;
  /* 内側の余白を設定 */
  font-size: 60%;
  /* フォントサイズを90%に設定 */
  line-height: 160%;
  color: #049683;
  /* 文字色 */
  vertical-align: middle;
  /* 中央揃え */
  border: 1px solid #049683;
  border-radius: 3px;
  background-color: #f0f9f9;
}

.schedule_item--irregular {
  margin: auto;
}

.schedule_item--irregular .schedule_date {
  font-size: 1.1em;
}

@media screen and (max-width: 768px) {
  .schedule_section {
    margin: 0 auto;
    padding: 10px 0;
    /* パディングを減らして縦幅を調整 */
    box-sizing: border-box;
  }

  .schedule_item--irregular {
    margin: auto;
  }

  .schedule_item {
    flex-wrap: nowrap;
    padding: 4px 0;
    gap: 0;
  }

  .schedule_date {
    flex: 1;
    width: 40%;
    min-width: 70px;
    font-size: 1.0em;
    margin: 0;
    padding-left: 20px;
    text-align: right;
    word-break: keep-all;
  }

  .schedule_date_list {
    width: 55%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .schedule_date_list>li {
    width: 33.33%;
    min-width: 0;
    padding: 0 2px;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    box-sizing: border-box;
  }


  .schedule_time {
    flex: 2;
    width: auto;
    font-size: 75%;
    padding: 0 2px;
    text-align: left;
    white-space: nowrap;
  }

  .schedule_exe {
    font-size: 80%;
  }

  .schedule_label {
    width: auto;
    font-size: 75%;
    text-align: left;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 2px 0 0;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .highlight_red {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 2px 5px;
    font-size: 60%;
    line-height: 160%;
    color: #aa0707;
    vertical-align: middle;
    border: 1px solid #aa0707;
    border-radius: 2px;
    /* background-color: #f0f9f9; */
  }
}

/* slick(スライダー) */
.slide_list_wrap {
  max-width: 80%;
  margin: 0 auto 45px auto;
}

.slide_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide_list li {
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.slide_item_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  /* 必要に応じて高さを調整 */
  background-color: #fff;
  /* テキスト部分の背景を白色に設定 */
  border-radius: 8px;
  /* 角を少し丸める（オプション） */
  overflow: hidden;
  /* 内容がはみ出さないようにする */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* 見た目を整える影（オプション） */
  color: #2e363d;
  text-decoration: none;
}

/* .slide_item_wrap:link,
   .slide_item_wrap:visited {
        color: #2e363d;
        text-decoration: none;
    }

    .slide_list li:hover {
        transform: scale(1.05);
    } */
.slide_item_img_wrap {
  margin: 0 0 5px 0;
}

.slide_item_img_wrap>img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* テキスト部分のスタイル */
.slide_item_title {
  display: flex;
  /* フレックスボックスを使用 */
  align-items: center;
  /* 縦方向に中央揃え */
  justify-content: center;
  /* 横方向に中央揃え */
  text-align: center;
  /* テキストを中央揃え */
  font-size: clamp(16px, 2vw, 24px);
  /* フォントサイズを画面幅に応じて可変に設定 */
  line-height: 1.2;
  /* 行間を調整 */
  padding: 5px;
  /* 内側の余白を設定 */
  min-height: 100px;
  /* 最小高さを設定して高さを統一 */
  max-height: 200px;
  background-color: #fff;
  /* 背景色を白に設定 */
  font-weight: bold;
  /* 太字に設定 */
  box-sizing: border-box;
  /* パディングを含めたボックスサイズを計算 */
}

.slide_item_text {
  display: flex;
  /* フレックスボックスを使用 */
  align-items: flex-start;
  /* 縦方向に上揃え */
  justify-content: center;
  /* 横方向に中央揃え */
  font-size: clamp(14px, 1.5vw, 16px);
  /* フォントサイズを画面幅に応じて可変に設定 */
  line-height: 1.5;
  /* 行間を調整 */
  padding: 0 15px;
  /* 内側の余白を設定 */
  min-height: 140px;
  /* 最小高さを設定して高さを統一 */
  max-height: 240px;
  background-color: #fff;
  /* 背景色を白に設定 */
  box-sizing: border-box;
  /* パディングを含めたボックスサイズを計算 */
  word-break: break-word;
  /* 長い単語を折り返し */
}

/* slickの矢印ボタン（Font Awesomeアイコン用） */
.slick-arrow,
.slick-prev,
.slick-arrow {
  all: unset;
  width: 48px !important;
  height: 48px !important;
  color: #FFF !important;
  background: linear-gradient(to bottom, #faab34, #f8872b) !important;
  border-radius: 50%;
  border: none;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  z-index: 10;
  transition: transform 0.3s ease;
  transform-origin: center center;
  font-size: 24px;
  text-align: center !important;
  line-height: 1;
  overflow: visible;
}

/* アイコン自体にもサイズ指定を与えるとさらに安定 */
.slick-arrow i {
  color: #FFF;
  font-size: 24px;
  width: auto;
  height: auto;
  display: inline-block;
}

/* 左右位置調整 */
.slick-prev {
  left: -56px !important;
}

.slick-next {
  right: -56px !important;
}

/* ホバー時に拡大 */
/* .slick-arrow:hover {
        transform: translateY(-50%) scale(1.1);
        cursor: pointer;
    } */

/* slickのデフォルト矢印を無効化（アイコンだけを残す） */
.slick-prev:before,
.slick-next:before {
  content: '' !important;
}

/* slickのスマホcss */
@media (max-width: 769px) {
  .slide_list_wrap {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .slide_list li {
    padding: 20px !important;
  }

  button.slick-arrow {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    z-index: 10;
  }

  button.slick-arrow i {
    font-size: 14px !important;
  }

  button.slick-prev {
    left: 20px !important;
  }

  button.slick-next {
    right: 20px !important;
  }

  .slide_item_title {
    font-size: 18px;
    text-align: center;
  }

  .slide_item_text {
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }
}

/*------------------------------ ヘッダーバー ------------------------------*/

.specialbar {
  text-align: left;
  color: #fff;
  background: linear-gradient(to left, #015eea, #00c0fa);
  margin: 0 auto;
  padding: 10px 20px;
}

.specialbar p {
  font-size: 110%;
  color: #fff;
  line-height: 1.2em;
}

.specialbar h2 {
  position: relative;
  background: #ffffff;
  margin: 20px auto;
  width: 90%;
  padding: 5px 5px 2px 20px;
  font-size: 0.9em;
  text-align: center;
  color: #f96c17;
  border-radius: 0 50px 50px 0;
}

.specialbar h2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
  display: inline-block;
  line-height: 30px;
  position: absolute;
  padding: 0em;
  color: white;
  background: #f39025;
  font-weight: 900;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  left: -0.8em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.29);
}

@media screen and (min-width:769px) {
  .specialbar {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1em;
    background: linear-gradient(to left, #015eea, #00c0fa);
    margin: 0 auto;
    padding: 10px 0;
  }

  .specialbar h2 {
    position: relative;
    background: #ffffff;
    margin: 10px auto;
    width: 90%;
    padding: 5px 5px 2px 20px;
    font-size: 1.2em;
    text-align: center;
    color: #ff246d;
    border-radius: 0 50px 50px 0;
  }

  .specialbar h2:before {
    font-family: "Font Awesome 5 Free";
    content: "\f05a";
    display: inline-block;
    line-height: 40px;
    position: absolute;
    padding: 0em;
    color: white;
    background: #ff246d;
    font-weight: 900;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    left: -0.8em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.29);
  }

}

.red {
  color: #ee5a24;
  display: contents;
}

.yellow {
  color: #e5f736;
}

.white {
  color: #fff;
}

/*---------- 文字装飾 ----------*/

.bold {
  font-weight: bold;
}

.ul {
  text-decoration: underline;
}

.red {
  font-weight: bold;
  color: #f52f0d;
}

.through {
  text-decoration: line-through;
}

.ym {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fcf69f 60%);
}

.caption {
  font-size: 75%;
  color: #666666;
  font-weight: normal;
  line-height: 180%;
}


/*---------- 文字位置 ----------*/

.center {
  text-align: center;
}

.right {
  text-align: right;
}