@charset "utf-8";
/*************************************************************
CSS information
style info :  AIプロンプト診断サービスページ限定のスタイル
**************************************************************/
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
#a_1, #a_2, #a_3, #a_4, #a_5 {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}
/*
====================
メインビジュアル
====================
*/

.main_visual {
  box-sizing: border-box;
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d50 40%, #0d2240 100%);
}

.main_visual::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.main_visual .mv_inquiry_bnr {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 290px;
  height: auto;
  min-height: 90px;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0C59BE;
  color: #ffffff;
  border-radius: 4px;
  text-align: center;
  font-size: 20px;
}

.mv_inquiry_bnr:hover {
  opacity: 0.9;
}

@media screen and (max-width: 1024px) {
  .mv_inquiry_bnr {
    font-size: 16px;
    margin-top: 40px;
    padding: 15px 20px;
    width: auto;
    border-radius: 10px;
    display: block;
    justify-content: right;
    background-color: #0C59BE;
    color: #ffffff;
    position: relative;
    text-align: center;
    font-weight: bold;
  }
}

.main_visual .main_visual_inner {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 72px;
  width: auto;
  margin: 0 auto;

  height: auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.main_visual_inner .mv_left {
  box-sizing: border-box;
  width: 70%;
  padding-right: 50px;
}

.main_visual_inner .mv_right {
  box-sizing: border-box;
  margin-top: 0;
  width: 70%;
}

.main_visual_inner .mv_title {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 48px;
  line-height: 1.3;
  color: #F2F2F2;
}

.main_visual_inner .mv_subtitle {
  box-sizing: border-box;
  width: 100%;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.25;
  color: #F2F2F2;
  margin-top: 8px;
}

.main_visual_inner .mv_caption {
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
  color: #f0f0f0;
  margin-top: 16px;
}


/* PC 1440pxより広い */
@media screen and (min-width: 1441px) {

  .main_visual .main_visual_inner {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;

    max-width: 1296px;
    margin: 0 auto;

    height: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
  }
}


/* SP 1024px以下 */
@media screen and (max-width: 1024px) {

  .main_visual {
    width: 100%;
    height: 220px;
    margin-top: 0px;
  }

  .main_visual::after {
    height: 220px;
    background: rgba(0, 0, 0, 0.3);
  }

  .main_visual .main_visual_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90vw;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
  }

  .main_visual_inner .mv_left {
    width: 100%;
  }

  .main_visual_inner .mv_title {
    max-width: 100%;
    margin-bottom: 0px;
    text-align: left;
    font-weight: bold;
    font-size: 24px;
  }

  .main_visual_inner .mv_subtitle {
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 8px;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
  }

  .main_visual_inner .mv_right {
    width: 0;
  }

  .main_visual_sp {
    padding: 32px 5%;
  }

  .main_visual_sp_container {
    position: relative;
    padding-top: 24px;
    margin-bottom: 32px;
  }

  .main_visual_sp_container:last-child {
    margin-bottom: 0;
  }

  .main_visual_sp_container::before {
    position: absolute;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, #012E83 0%, #0C59BE 100%);
    content: '';
    top: 0;
    left: 0;
  }

  .main_visual_sp_container p {
    font-size: 14px;
    line-height: 2;
    color: #222;
    text-align: left;
  }
}


/*
====================
アンカーメニュー
====================
*/

.anchor_menu {
  width: 100%;
  padding: 20px 0;
}

.anchor_menu_container {
  display: flex;
  justify-content: space-around;
  max-width: 1296px;
  margin: 0 auto;
}

.anchor_menu_item {
  width: 100%;
  list-style: none;
  box-sizing: border-box;
  border-left: 1px solid #D8D8D8;
}

.anchor_menu_item > a {
  text-decoration: none;
  outline: none;

  display: grid;
  place-items: center;
  width: 100%;
  height: 40px;

  font-size: 16px;
  color: #012E83;
}

.anchor_menu_item:last-child {
  border-right: 1px solid #D8D8D8;
}

/* SP 1024px以下 */
@media screen and (max-width: 1024px) {

  .anchor_menu {
    width: 100%;
    padding: 0;
  }

  .anchor_menu_container {
    display: grid;
    grid-template-columns: 1fr;

    margin: 0;
  }

  .anchor_menu_item > a {
    list-style: none;
    box-sizing: border-box;

    display: grid;
    place-items: center start;
    height: 56px;
    padding: 0 5%;
    border-left: none;
    border-bottom:1px solid rgba(216, 216, 216, 0.5);

    text-align: left;
    font-size: 14px;
  }

  .anchor_menu_item {
    position: relative;
    border-left: none;
  }

  .anchor_menu_item:last-child {
    border-right: none;
  }

  .anchor_menu_item::after {
    position: absolute;
    content: "";
    margin: auto;
    top: 0;
    bottom: 4px;
    right: 5%;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid rgba(153, 153, 153, 0.7);
    border-right: 1.5px solid rgba(153, 153, 153, 0.7);
    transform: rotate(135deg);
  }
}

/*
====================
本文
====================
*/


.section_content {
  box-sizing: border-box;
  padding: 80px 11.5%;
  background: #fff;
}

.bg_gray {
  background: #F9F9F9;
}

.bg_light_blue {
  background: #F6F9FC;
}

.section_content .menu_title {
  margin-bottom: 80px;
}

.section_content .menu_title > h2 {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.1;
  color: #012E83;
}

.section_content .menu_title > hr {
  margin: 0 auto;
  margin-top: 24px;

  border: 3px solid;
  border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 3px 0;
  border-style: solid;

  width: 40px;
}

.section_content .section_title {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 12px;
  margin: 64px 0 32px;
  border-bottom: 4px solid #D8D8D8;

  font-size: 24px;
  font-weight: bold;
  color: #012E83;
  text-align: left;
}

.section_content .section_title::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -4px;
  width: 64px;
  height: inherit;
  border: 4px solid;
  border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 4px 0;
  border-style: solid;
}

.section_content .caption {
  box-sizing: border-box;
  width: 100%;
  margin-top: 24px;

  font-size: 16px;
  line-height: 2;
  color: #222;
  text-align: left;
}
.section_content .caption a {
    text-decoration: underline;
    color: #222;
}

/* SP 1024px以下 */
@media screen and (max-width: 1024px) {

  .section_content {
    padding: 40px 5%;
  }

  .sp_nopad {
    padding: 40px 0 !important;
  }

  .section_content .menu_title {
    margin-bottom: 32px;
  }

  .section_content .menu_title > h2 {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.25;
    color: #012E83;
  }

  .section_content .menu_title > hr {
    margin: 0 auto;
    margin-top: 24px;

    border: 2px solid;
    border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 2px 0;
    border-style: solid;

    width: 40px;
  }

  .section_content .section_title {
    position: relative;
    box-sizing: border-box;
    max-width: 90vw;
    padding-bottom: 12px;
    margin: 32px auto 24px auto;
    border-bottom: 2px solid #D8D8D8;

    font-size: 20px;
    font-weight: bold;
    color: #012E83;
    text-align: left;
  }

  .section_content .section_title::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 64px;
    height: inherit;
    border: 2px solid;
    border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 2px 0;
    border-style: solid;
  }

  .section_content .caption {
    font-size: 14px;
    max-width: 90vw;
    margin: 0 auto;
  }
}


/*
====================
アイコンが横並びになるセクション
====================
*/


.section_content .flex {
  box-sizing: border-box;
  width: 100%;
  margin-top: 64px;

  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px 0;
}

.section_content .flex_item {
  width: 30%;
}

.section_content .flex_item .icon_area {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: #012E83;
  border-radius: 50%;
}

.section_content .flex_item .icon_area img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;

  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.section_content .flex_item .caption_area {
  width: 100%;
  margin: 0 auto;
  margin-top: 24px;
}

.section_content .caption_area h3 {
  position: relative;
  width: 100%;

  font-size: 20px;
  line-height: 1.5;
  color: #133B88;
  text-align: center;
  font-weight: bold;
}

.section_content .flex_item .caption_area p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: #222;
  text-align: left;
}

/* SP 1024px以下 */
@media screen and (max-width: 1024px) {

  .section_content .flex {
    box-sizing: border-box;
    width: 100%;
    margin-top: 40px;

    display: block;
  }

  .section_content .flex_item {
    width: 100%;
    margin-top: 40px;
  }

  .section_content .flex_item .caption_area {
    margin-top: 24px;
  }

  .section_content .caption_area h3 {
    font-size: 20px;
  }

  .section_content .flex_item .caption_area p {
    margin-top: 12px;
    font-size: 14px;
  }
}


/*
====================
診断項目テーブル
====================
*/

.s_table {
  margin-top: 40px;
  border-bottom: solid 1px #002f8e;
  border-right: solid 1px #002f8e;
  margin-bottom: 40px;
  width: 100%;
}

.s_table th {
  border-left: solid 1px #fff;
  border-bottom: none;
  background: #002f8e;
  padding: 12px 10px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}

.s_table td {
  border-top: solid 1px #002f8e;
  border-left: solid 1px #002f8e;
  background: #fff;
  padding: 12px 10px;
  color: #222;
  vertical-align: middle;
}

.s_table td:first-child {
  text-align: left;
  color: #002f8e;
  font-weight: bold;
}

.s_table td.risk_high {
  color: #c0392b;
  font-weight: bold;
  text-align: center;
}

.s_table td.risk_mid {
  color: #e67e22;
  font-weight: bold;
  text-align: center;
}

.s_table td.risk_low {
  color: #27ae60;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .s_table {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .s_table th,
  .s_table td {
    padding: 8px 6px;
  }
}


/*
====================
フロー
====================
*/

.flow_wrapper {
  width: 100%;
  max-width: 918px;
  margin: 0 auto;
}

.flow_item_blue, .flow_item {
  position: relative;
  width: 100%;
  height: auto;
  padding: 32px;
  margin-top: 24px;
  background: #012E83;
  box-sizing: border-box;
}

.flow_item {
  background: #fff;
  border: 2px solid rgba(216, 216, 216, 0.5);
}

.flow_item_blue::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #012E83 transparent transparent transparent;
  border-width: 8px 16px 0 16px;
  position: absolute;
  bottom: -8px;
  left: 16px;
  margin-top: 0;

  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
}

.flow_item_blue h3, .flow_item h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
}

.flow_item h3 {
  color: #012E83;
}

.flow_item_blue p, .flow_item p {
  margin-top: 24px;

  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #fff;
}

.flow_item p {
  color: #222;
}


@media screen and (max-width: 1024px) {

  .flow_wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .flow_item_blue, .flow_item {
    position: relative;
    width: 100%;
    height: auto;
    padding: 32px 16px;
    margin-top: 16px;
  }

  .flow_item_blue h3, .flow_item h3 {
    font-size: 24px;
  }

  .flow_item_blue p, .flow_item p {
    font-size: 14px;
  }
}


/*
====================
問い合わせボタン
====================
*/

.section_content .cv_btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 24px;

  width: 100%;
  max-width: 918px;
  margin: 0 auto;
  padding: 24px 16px;
  background: #fff;

  border: 2px solid #0C59BE;
  border-radius: 4px;
  transition: .3s;

  box-sizing: border-box;
}

.section_content .cv_btn::after {
  position: absolute;
  top: 50%;
  right: 40px;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0C59BE;
  border-right: 2px solid #0C59BE;

  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
}

.section_content .cv_btn p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #0C59BE;
}

.section_content .cv_btn:hover {
  filter: brightness(0.9);
}

/* SP 1024px以下 */
@media screen and (max-width: 1024px) {

  .section_content .cv_btn {
    position: relative;
    display: block;

    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #fff;

    border: none;
    border-radius: 4px;

    box-sizing: border-box;
  }

  .section_content .cv_btn::after {
    content: none;
  }

  .section_content .cv_btn p {
    position: relative;
    padding: 16px 32px 16px 12px;
    background-color: #0C59BE;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    text-align: left;
    color: #fff;

    border-radius: 4px;
  }

  .section_content .cv_btn p::after {
    position: absolute;
    top: 50%;
    right: 12px;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;

    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
  }
}


/*
====================
脅威カード
====================
*/

.threat_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.threat_card {
  box-sizing: border-box;
  width: calc(50% - 12px);
  padding: 32px;
  background: #fff;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  transition: box-shadow .3s;
}

.threat_card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.threat_card_number {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0C59BE;
  margin-bottom: 8px;
}

.threat_card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #012E83;
  margin-bottom: 16px;
  line-height: 1.4;
}

.threat_card p {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
}

@media screen and (max-width: 1024px) {
  .threat_cards {
    gap: 16px;
  }
  .threat_card {
    width: 100%;
    padding: 24px 16px;
  }
  .threat_card h3 {
    font-size: 18px;
  }
  .threat_card p {
    font-size: 14px;
  }
}


/*
====================
多層防御フレームワーク
====================
*/

.defense_layers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.defense_layer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: #fff;
  border-left: 4px solid #012E83;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.defense_layer_number {
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: rgba(1, 46, 131, 0.4);
  min-width: 40px;
}

.defense_layer_content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #012E83;
  margin-bottom: 4px;
}

.defense_layer_content p {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

@media screen and (max-width: 1024px) {
  .defense_layers {
    gap: 12px;
  }
  .defense_layer {
    padding: 16px;
    gap: 16px;
  }
  .defense_layer_number {
    font-size: 24px;
    min-width: 30px;
  }
  .defense_layer_content h3 {
    font-size: 16px;
  }
  .defense_layer_content p {
    font-size: 13px;
  }
}


/*
====================
報告書セクション
====================
*/

.report_features {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.report_feature {
  flex: 1;
  padding: 32px;
  background: #fff;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
}

.report_feature h3 {
  font-size: 20px;
  font-weight: bold;
  color: #012E83;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0C59BE;
}

.report_feature p {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
}

.report_feature ul {
  margin-top: 12px;
  padding-left: 1.2em;
}

.report_feature ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
  list-style-type: disc;
}

@media screen and (max-width: 1024px) {
  .report_features {
    flex-direction: column;
    gap: 20px;
  }
  .report_feature {
    padding: 24px 16px;
  }
  .report_feature h3 {
    font-size: 18px;
  }
  .report_feature p,
  .report_feature ul li {
    font-size: 14px;
  }
}


/*
====================
責任分界点
====================
*/

.scope_comparison {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.scope_card {
  flex: 1;
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #D8D8D8;
}

.scope_card.out_of_scope {
  background: #f9f9f9;
  border-color: #ccc;
}

.scope_card.in_scope {
  background: #fff;
  border-color: #012E83;
}

.scope_card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 12px;
}

.scope_card.out_of_scope h3 {
  color: #666;
  border-bottom: 2px solid #ccc;
}

.scope_card.in_scope h3 {
  color: #012E83;
  border-bottom: 2px solid #012E83;
}

.scope_card ul {
  padding-left: 0;
}

.scope_card ul li {
  font-size: 15px;
  line-height: 2;
  color: #222;
  padding-left: 1em;
  text-indent: -1em;
}

.scope_card ul li::before {
  content: "・";
}

@media screen and (max-width: 1024px) {
  .scope_comparison {
    flex-direction: column;
    gap: 16px;
  }
  .scope_card {
    padding: 24px 16px;
  }
  .scope_card h3 {
    font-size: 18px;
  }
  .scope_card ul li {
    font-size: 14px;
  }
}

/*
====================
FAQ
====================
*/

.faq {
  margin: 25px auto 0px auto;
}

.faq_question {
  font-size: 16px;
  font-weight: bold;
  color: #002f8e;
}

.faq_answer {
  padding: 10px 0;
}

a.class_link_white {
  text-decoration: underline;
  color: #FFF;
}

a.class_link_black {
  text-decoration: underline;
  color: #222;
}

/*
====================
画像
====================
*/
.image_caption {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
}

.image_caption img {
  max-width: 100%;
}

@media screen and (max-width: 1024px) {

  .image_caption {
    width: 100%;
    text-align: center;
    padding: 30px 5px;
  }
}

/*
====================
ULリスト
====================
*/
ul.cnd_ul > li {
  position: relative;
  padding-left: 1.2em;
  line-height: 2;
}

ul.cnd_ul > li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #012e83;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}
