@charset "UTF-8";

---------------------------------*/


/*--------------------------------
全体
---------------------------------*/

.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .pc-only {
    display: none;
  }
}

.-buluecircle-worry {
  position: relative;
  padding-left: 20px;
  display: flex;
}

.-buluecircle-worry::before {
  content: "";
  position: absolute;
  background-color: var(--aqua, #3387ce);
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 0;
  top: 15px;
}

.-buluecircle {
  position: relative;
  padding-left: 15px;
  display: flex;
}

.-buluecircle::before {
  content: "";
  position: absolute;
  background-color: var(--aqua, #3387ce);
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

.diag-bluetitle {
  color: var(--navy);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}

.bg-white {
  background-color: white;
  border-radius: 10px;
  padding: 80px 0;
}

a.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.inner-diag {
  max-width: 848px;
  margin: 0 auto;
  padding: 0 80px;
}

@media screen and (max-width: 767px) {
  .inner-diag {
    padding: 0 48px;
  }
}

@media screen and (max-width: 575px) {
  .diag-bluetitle {
    font-size: 24px;
  }

  .bg-white {
    padding: 40px 0;
  }

  .inner-diag {
    padding: 0 24px;
  }
}

/*--------------------------------
modify
---------------------------------*/

.-txtworrysize {
  font-size: 40px;
}

.-txt-blue {
  color: var(--aqua, #3387ce);
}

.-txt-orange {
  color: #ff834e;
}

.-sp {
  display: none;
}

.-tb {
  display: none;
}

.-tbtable {
  display: none;
}

@media screen and (max-width: 767px) {
  .-tb {
    display: block;
  }

  .-tbpc {
    display: none;
  }

  .-tbtable {
    display: block;
  }

  .-sp {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .-pc {
    display: none;
  }

  .-sp {
    display: block;
  }

  .-tbtable {
    display: none;
  }
}

/*--------------------------------
lead
---------------------------------*/

.lead {
  padding: 48px 0 56px;
}

.lead_txt {
  color: var(--text, #333);
  text-align: justify;
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 991px) {
  .lead {
    padding: 50px 0;
  }
}

/*--------------------------------
worry　悩み訴求
---------------------------------*/

.worry-coments_txt {
  color: var(----navy, #00437c);
  font-family: Noto Sans JP, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.03em;
  height: auto;
}

.worry-coments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  background-color: var(--lightblue, #e6f0f8);
  border-radius: 100px;
  padding: 30px 10% 27px;
  position: relative;
}

.worry-coments::after {
  /*三角*/
  content: "";
  position: absolute;
  top: 98%;
  transform: rotate(90deg);
  border: 20px solid transparent;
  border-left: 15px solid var(--lightblue, #e6f0f8);
  /* 好みで色を変えてください */
}

.worry-coments_img {
  object-fit: contain;
}

.worry-container {
  display: flex;
  justify-content: center;
  gap: 43px;
  margin-top: 55px;
}

.worry-contents {
  display: flex;
  flex-direction: column;
}

.worry-coments-question {
  color: var(--navy, #00437c);
  font-family: Noto Sans JP, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.03em;
}

.worry-list {
  margin-top: 48px;
}

.worry-item {
  color: var(--navy, #00437c);
  font-family: Noto Sans JP, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /*デザインでは100%でしたが160%にしました*/
  letter-spacing: 0.03em;
}

.worry-container-img {
  width: auto;
  object-fit: contain;
  max-width: 244px;
}

.worry-item:not(:first-child) {
  margin-top: 24px;
}

.worry {
  padding-bottom: 100px;
  position: relative;
}

.worry::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: calc(50% - 79px);
  border-style: solid;
  border-right: 79px solid transparent;
  border-left: 79px solid transparent;
  border-top: 67px solid #ffffff;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .worry-container {
    flex-direction: column;
    align-items: center;
  }

  .worry-container-img {
    transform: scale(-1, 1);
  }

  .worry-container {
    margin-top: 42px;
    gap: 20px;
  }

  .worry-list {
    margin-top: 20px;
  }

  .worry-item:not(:first-child) {
    margin-top: 15px;
  }

  .worry {
    padding-bottom: 50px;
  }

  .worry-coments {
    gap: 8px;
    padding: 30px 5% 27px;
  }
}

@media screen and (max-width: 575px) {
  .worry-coments_txt {
    font-size: 18px;
  }

  .-txtworrysize {
    font-size: 22px;
  }

  .worry-coments_img {
    width: 69px;
    height: 78px;
  }

  .worry-coments-question {
    font-size: 18px;
  }

  .worry-item {
    font-size: 16px;
  }

  .worry-coments {
    gap: 8px;
    padding: 10px 5% 16px;
  }
}

/*--------------------------------
diag　悩み訴求への提案
---------------------------------*/
.diag {
  background-color: var(--bg);
  padding: 120px 0 110px;
}

.diag-box {
  width: 50%;
}

.diag-title {
  color: var(--IT-com, #00437c);
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.diag-titlebox {
  border-radius: 10px 10px 0px 0px;
  background: linear-gradient(105deg, #39668f 29.33%, #5b8fbf 89.22%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  height: 113px;
}

.diag-titlebox_title {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  width: 100%;
}

.diag-box {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(120, 150, 178, 0.2);
  width: 48%;
}

.diag-txtbox {
  padding: 30px 40px;
}

.diag_txt {
  color: #333;

  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.03em;
}

.diag-reason {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.diag_txtnote {
  color: var(----bluegrey, #39668f);
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.03em;
  margin-top: 10px;
}

.diag-titlebox_img {
  flex-shrink: 0;
  width: 60px;
}

@media screen and (max-width: 900px) {
  .diag-reason {
    flex-direction: column;
  }

  .diag-box {
    width: 100%;
  }

  .diag_txt {
    width: 100%;
    max-width: none;
  }

  .diag-titlebox {
    padding: 20px 8%;
  }

  .diag-titlebox_img {
    max-height: 41px;
    width: auto;
  }

  .diag-titlebox {
    height: 90px;
  }
}

@media screen and (max-width: 575px) {
  .diag-titlebox_title {
    font-size: 18px;
  }

  .diag-titlebox {
    height: 80px;
  }

  .diag-title {
    font-size: 18px;
  }

  .diag {
    padding: 120px 0 55px;
  }
}

/*--------------------------------
diag　メリット
---------------------------------*/

.diag-merit {
  margin-top: 100px;
  color: var(--aqua);
  font-weight: 700;
  font-size: 22px;
  align-items: center;
  /* 横線を上下中央 */
  display: flex;
  /* 文字と横線を横並び */
  justify-content: center;
  /* 文字を中央寄せ */
}

.diag-merit::before,
.diag-merit::after {
  background-color: var(--aqua);
  /* 横線の色 */
  content: "";
  height: 2px;
  /* 横線の高さ */
  width: 32%;
  /* 横線の長さ */
}

.diag-merit::before {
  margin-right: 32px;
  /* 文字との余白 */
}

.diag-merit::after {
  margin-left: 32px;
  /* 文字との余白 */
}

.diag-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 40px;
  column-gap: 88px;
}

.diag-item_num {
  font-family: urw-din, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  color: var(--aqua);
}

.diag-item_title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 16px;
  height: 66px;
  align-content: center;
}

@media screen and (max-width: 991px) {
  .diag-item_title {
    font-size: 18px;
    margin: 4px 0 8px;
    height: 48px;
  }

  .diag-list {
    column-gap: 48px;
  }
}

@media screen and (max-width: 767px) {
  .diag-merit::before,
  .diag-merit::after {
    width: auto;
    /* 横線の長さ */
    flex-grow: 1;
    /* 横幅いっぱい */
  }

  .diag-item {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 575px) {
  .diag-merit {
    font-size: 18px;
    margin-top: 48px;
  }

  .diag-list {
    column-gap: 32px;
  }

  .diag-item {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 420px) {
  .diag-item_title {
    font-size: 14px;
    margin: 0;
    height: 48px;
  }

  .diag-item {
    width: 43%;
    margin-bottom: 0;
  }
}

/*--------------------------------
diag　サービス内容
---------------------------------*/

.service {
  margin: 80px 0;
}

.service-container {
  margin-top: 120px;
}

.service-btn-wrap {
  position: relative;
  transition: all 0.5s ease;
}

.service_img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: -35px;
  z-index: 2;
}

.service-btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 80px;
  column-gap: 38px;
}

.service-btn_link {
  padding: 27px 0;
  display: block;
  width: 415px;
  text-align: center;
  border: solid 1px #00437c;
  border-radius: 200px;
  color: var(--navy);
  font-weight: 700;
  transition: 0.5s ease;
  text-transform: uppercase;
  overflow: hidden;
  padding-left: 16px;
}

.service-btn_text {
  position: relative;
}

.service-btn_arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(135deg) translateY(50%);
  margin-left: 20px;
}

.service-btn_link:hover {
  color: #fff;
  transform: scale(1.1, 1.1);
}

.service-btn_link::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  overflow: hidden;
}

.service-btn_link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

@media screen and (max-width: 991px) {
  .service-btn_link {
    width: 310px;
  }
}

@media screen and (max-width: 767px) {
  .service-btn_link {
    width: 375px;
  }

  .service-btn {
    flex-direction: column;
    align-items: center;
  }

  .service-btn {
    row-gap: 120px;
  }
}

@media screen and (max-width: 575px) {
  .service {
    margin: 55px;
  }

  .service-btn {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 55px;
  }

  .service-btn_item {
    margin: 0;
  }

  .service-btn_link {
    width: 80vw;
  }

  .service-item-text {
    padding-left: 24px;
  }

  .service-item-title {
    width: 58px;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    flex-shrink: 0;
  }

  .service-btn_arrow {
    margin-left: 16px;
  }
}

/*--------------------------------
diag　プラットフォーム診断 WEBアプリケーション診断 共通
---------------------------------*/

.check-content {
  margin-top: 40px;
}

.check-lead {
  display: flex;
  align-items: center;
}

.check-txt {
  line-height: 1.6;
  margin-right: 27px;
}

.check-img {
  max-width: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.check-content-wrap {
  line-height: 1.6;
}

.check-title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 22px;
  color: var(--aqua);
  line-height: 1.3;
}

.check-item {
  margin-top: 8px;
}

.check-list-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
}

.check-p {
  line-height: 1.6;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .check-lead {
    flex-direction: column-reverse;
  }

  .check-txt {
    margin-top: 32px;
    margin-right: 0;
  }

  .check-title {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 0;
  }

  .check-content {
    margin-top: 40px;
  }
}

@media screen and (max-width: 575px) {
  .check-sample {
    border: solid 2px #3387ce;
    border-radius: 10px;
    padding: 20px 25px;
  }
}

/*--------------------------------
diag　プラットフォーム診断
---------------------------------*/

.pf {
  background-color: var(--bg);
  padding-top: 140px;
}

.pf-method-containar {
  display: flex;
  column-gap: 48px;
}

.pf-method-flex {
  display: flex;
  align-items: center;
}

.pf-method-item_wrap {
  margin-left: 16px;
}

.pf-method-item_img {
  flex-shrink: 0;
}

.pf-method-item_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.pf-note {
  color: #818181;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.pf-report {
  margin-top: 40px;
}

.pf-report-title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
  .pf-method-containar {
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
  }

  .pf-method-item {
    width: 385px;
  }
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 575px) {
  .pf {
    padding-top: 55px;
  }

  .pf-method-containar {
    align-items: start;
  }

  .pf-method-item {
    width: auto;
  }

  .pf-method-item_title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .pf-method-item_img {
    flex-shrink: 0;
    width: 100px;
    object-fit: cover;
  }

  .pf-report-flex {
    display: flex;
    margin-top: 24px;
  }

  .pf-report-item {
    display: flex;
    margin-bottom: 12px;
  }

  .pf-report-item_num {
    font-family: urw-din, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
    width: 27px;
    height: 27px;
    padding-bottom: 2px;
    color: white;
    background-color: var(--bluegrey);
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.2;
  }

  .pf-report-item_title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-left: 12px;
  }
}

/*--------------------------------
diag　WEBアプリケーション診断
---------------------------------*/

.app {
  background-color: var(--bg);
  padding-top: 140px;
}

.app-report {
  margin-top: 40px;
  margin-bottom: 20px;
}

.app-report-title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 575px) {
  .app {
    padding-top: 55px;
  }
}

/*--------------------------------
diag　共通サービス
---------------------------------*/
.common {
  background-color: var(--bg);
  padding-top: 120px;
}

.common-list {
  display: flex;
  justify-content: space-between;
}

.common-item {
  background-color: white;
  box-shadow: 0px 0px 50px rgba(120, 150, 178, 0.2);
  border-radius: 30px;
  padding: 64px 36px;
  width: 31%;
}

.common-item_title {
  color: var(--bluegrey);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  height: 56px;
}

.common-item_img {
  text-align: center;
  margin-top: 8px;
}

.common-item_txt {
  line-height: 1.6;
  margin-top: 16px;
}

@media screen and (max-width: 1100px) {
  .common-list {
    flex-direction: column;
    align-items: center;
    row-gap: 26px;
  }

  .common-item {
    padding: 40px;
    width: 80%;
  }

  .common-item_title {
    height: auto;
  }

  .common-item {
    display: flex;
    align-items: center;
  }

  .common-item-wrap {
    flex-shrink: 0;
    text-align: center;
  }

  .common-item_img {
    margin: 0 auto;
  }

  .common-item_txt {
    margin-left: 24px;
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .common-item {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .common-item {
    width: auto;
  }
}

@media screen and (max-width: 575px) {
  .common-item {
    width: auto;
    padding: 32px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .common {
    padding-top: 55px;
  }

  .common-item_txt {
    margin: 0;
    margin-top: 24px;
  }
}

/*--------------------------------
diag　他社比較
---------------------------------*/

.table {
  background-color: var(--bg);
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .table {
    padding-top: 55px;
  }

  .table-slide {
    display: flex;
    overflow: auto;
  }

  .table-title {
    position: sticky;
    top: 0;
    left: 0;
    min-width: 180px;
  }

  .table-list {
    min-width: 646px;
  }
}

@media screen and (max-width: 575px) {
  .table-title {
    min-width: 120px;
  }

  .table-list {
    min-width: 431px;
  }
}

/*--------------------------------
diag　価格
---------------------------------*/

.price {
  background-color: var(--bg);
  padding-top: 120px;
  padding-bottom: 140px;
}

.price-container {
  margin-top: 48px;
}

.price-container:first-child {
  margin-top: 0;
}

.price-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 40px;
}

.price-title_small {
  font-size: 14px;
}

.price-small {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
}

.price-content {
  background-color: var(--lightblue);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}

.price-list-title {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  margin-top: 8px;
}

.price-item {
  margin-top: 8px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .price-img-tb {
    width: 310px;
    margin: 0 auto;
    display:block;
  }
}

@media screen and (max-width: 575px) {
  .price-title {
    font-size: 18px;
  }

  .price-title {
    margin-bottom: 30px;
  }

  .price-content {
    margin-top: 30px;
  }

  .price {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

/*--------------------------------
diag　サービスフロー
---------------------------------*/

.flow {
  padding-top: 120px;
  padding-bottom: 140px;
}

/*
.flow-content {
    
    margin-bottom: 13px;
    height: 500px;
}
    */

.flow-day-wrap {
  flex-shrink: 0;
  position: relative;
  height: 100%;
}

.flow-day_square {
  margin: auto;
  width: auto;
  background: linear-gradient(173deg, #d9d9d9 -80%, #39668f 89.22%);
}

.flow-day_arrowwrap {
  display: flex;
  flex-direction: column;
  background-color: #3387ce;
  flex-grow: 1;
  height: 80%;
}

.flow-day_day {
  /* position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: white;
    letter-spacing: 0.4rem;
    white-space: nowrap;
    
    display: flex;
    align-items: center;
    justify-content: center;*/
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.4rem;
  white-space: nowrap;
  color: #fff;
}

.flow-day_arrow {
  border-style: solid;
  border-width: 30px 33px 0 33px;
  border-color: #39668f transparent transparent transparent;
  background-color: #fff;
}

.text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

.flow-list {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  flex-grow: 1;
}

.flow-item_wrap {
  background-color: var(--lightblue);
  border-radius: 10px;
  padding: 20px 30px;
}

.flow-item_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--aqua);
}

.flow-item_text {
  line-height: 1.6;
  margin-top: 8px;
}

.flow-arrow {
  border-style: solid;
  border-width: 16px 16px 0 16px;
  border-color: #3387ce transparent transparent transparent;
  position: relative;
  left: 45%;
  transform: translate(-50%, -50%);
  top: 27px;
}

.flows-day_img {



}

@media screen and (max-width: 575px) {
  .flow {
    padding-top: 55px;
    padding-bottom: 90px;
  }

  .flow-day_day {
    padding: 20px 16px;
  }

  .flow-item_title {
    font-size: 18px;
  }

  .flow-list {
    margin-left: 8px;
    row-gap: 12px;
  }
}

/* 横並び */
.flow-content {
  display: flex;
  align-items: stretch;
  /* ←両者の高さを揃えるポイント */
  gap: 16px;
  margin: auto;
  margin-bottom: 12px;
}

/* 右側（例） */
.flow-content-list-wrap {
  flex: 1;
}

/* 左側：縦に flex で部品を積む */
.arrow {
  width: 60px;
  /* 矢印の太さ */
  display: flex;
  flex-direction: column;
  /* ←縦方向に並べる */
  position: relative;
}

/* 四角：残りスペースを全部埋める */
.arrow__shaft {
  flex: 1;
  /* ←これだけで高さが自動調整 */
  background: linear-gradient(173deg, #d9d9d9 -65%, #39668f 89.22%);
}

/* 三角：高さを固定して clip-path で形を作る */
.arrow__head {
  height: 39px;
  /* ←固定長さ（お好きな値で） */
  background: #39668f;
  /* clip‑path で下向き三角形を切り抜く */
  clip-path: polygon(0 0, 100% 0, 50% 70%);
  margin-top: -1px;
}

/* ★お好みでスマホ用に向きを変えたい場合の例
@media(max-width:600px){
  .wrapper{flex-direction:column;}
  .arrow{width:100%; height:60px; flex-direction:row;}
  .arrow__head{
    width:40px; height:auto;
    clip-path:polygon(0 0, 100% 50%, 0 100%);
  }
}
*/

@media screen and (max-width: 575px) {
  .arrow {
    width: 50px;
    /* 矢印の太さ */
  }
}

/*--------------------------------
diag　サービス約款はこちら
---------------------------------*/

.terms-link {
  color: var(--navy);
  display: flex;
  gap: 4px;
  justify-content: center;
  font-size: 16px;
  border-bottom: 1px solid var(--navy);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
  margin-top: 80px;
}



/* ソリューション一覧へボタン */

.btn-back {
  color: var(--navy);
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  border: var(--navy) solid 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  max-width: 540px;
  width: 84%;
  height: 72px;
  margin: 0 auto;
  margin-top: 100px;
}

.btn-back:hover {
  color: #fff;
  transform: scale(1.1, 1.1);
}

.btn-back::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  overflow: hidden;
  z-index: -1;
}

.btn-back:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-back_text {
  position: relative;
}

@media screen and (max-width: 575px) {
  .btn-back {
    margin-top: 60px;
  }
}

