@charset "UTF-8";

/*----------------------------------------
	TOPページ専用
----------------------------------------*/

/* main-visual
----------------------------------------*/
.main-visual {
  background: #EEF7FE;
  position: relative;
  height: 650px;
}

.main-visual__image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.main-visual__catch {
  position: absolute;
  top: 75px;
  left: 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}

@media screen and (min-width: 768px),
print {
  .main-visual {
    height: 530px;
  }

  .main-visual__inner {
    margin: auto;
  }

  .main-visual__catch {
	color: #000;
    top: 65px;
    left: 14%;
    font-size: min(3.33vw, 36px);
    /*改行位置キープのためvwで拡縮*/
  }
  
  
  .main-visual__image img {
    width: 100%;
    height: 530px;
    object-fit: contain;
  }
}

@media (768px <=width <=850px) {
  .main-visual__image img {
    object-fit: cover;
  }
}

/* main
----------------------------------------*/
.main-lead {
  width: 100%;
  background: linear-gradient(90deg, #FFBE01 0%, #FF7F3E 100%);
  padding: 80px 20px;
}

.main-lead p {
  color: #fff;
  text-align: justify;
}

.main-arrow {
  width: 53px;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (min-width: 768px),
print {
  .main-lead p {
    max-width: 923px;
    margin: 0 auto;
    font-size: 20px;
  }

  .main-arrow {
    width: 70px;
  }

  .main-image {
    max-width: 750px;
    margin: 0 auto;
  }
}

.attacker {
  max-width: 1000px;
  margin: 0 auto;
}

.attacker-list .card {
  width: 100%;
  box-shadow: none;
  border: none;
  background: #fff;
}

.attacker-list .card__image img {
  width: auto;
  height: 92px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.attacker-list .card__image::before {
  content: "";
  display: block;
  padding-top: calc((147/313)*100%);
}

.attacker-list .card__title {
  background: #666;
  padding: 6px 60px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  list-style: 1.5;
}

.attacker-list .card__body {
  padding-top: 0;
}

.damage-list {
  margin-top: -100px;
}

.task-list {
  margin-top: 0;
}

.damage-list .grid__item,
.task-list .grid__item {
  width: 100%;
  padding: 20px;
  background: #fff;
}

.damage-list .item__image,
.task-list .item__image {
  background: #f7f7f7;
}

.damage-list .item__image img,
.task-list .item__image img {
  width: auto;
  height: 96px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.damage-list .item__caption,
.task-list .item__caption {
  background: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.damage__catch {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
}

.damage__text {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

.task-list .item__text {
  font-weight: bold;
  margin-top: 20px;
}

.task-list .item__text span {
  color: #f00;
}

@media screen and (min-width: 768px),
print {
  .attacker-list .grid__item {
    width: calc((100% - 40px)/3);
  }

  .damage-list {
    margin-top: -200px;
  }

  .damage-list .grid__item,
  .damage-list::after,
  .task-list .grid__item,
  .task-list .grid__item::after {
    width: calc((100% - 60px)/4);
  }

  .damage-list .item__caption {
    min-height: 100px;
  }

  .damage__catch {
    font-size: 36px;
  }
}

.silverfort {
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 60px;
  background: #FFBE00;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.silverfort__logo {
  width: 200px;
}

.silverfort__title {
  font-size: 20px;
}

.silverfort__text {
  margin-top: 30px;
}

.product {
  background: #BBE9FF;
  padding-top: 60px;
}

.product-list {
  margin-top: 40px;
}

.product-list li {
  margin-top: 25px;
  width: 100%;
  display: flex;
  align-items: center;
}

.product-list .number {
  display: block;
  flex-shrink: 0;
  background: #333;
  width: 60px;
  height: 60px;
  font-size: 24px;
  color: #fff;
  padding: 10px 20px;
}

.product-list .text {
  display: block;
  width: 100%;
  background: #fff;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 26px 5px;
}

.product .card {
  width: 100%;
  background: #fff;
  padding: 20px;
  margin-top: 26px;
}

.product .card:first-of-type {
  margin-top: 0;
}

.product .card h3 {
  background: linear-gradient(90deg, #FFBE01 0%, #FF7F3E 100%);
  padding: 9px 10px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.product .card p {
  border-radius: 8px;
  background: #F7F7F7;
  padding: 20px 10px;
  text-align: center;
  margin-top: 10px;
}

.product ._center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
}

@media screen and (min-width: 768px),
print {
  .silverfort {
    padding-top: 40px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .silverfort__logo {
    min-width: 270px;
  }

  .silverfort__body {
    max-width: 700px;
    text-align: left;
  }

  .silverfort__title {
    font-size: 34px;
  }

  .product .task-list .card {
    width: calc((100% - 60px)/4);
  }

  .product .card:first-of-type {
    margin-top: 26px;
  }

  .product-list .number {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    font-size: 42px;
    color: #fff;
    padding: 10px 20px;
  }

  .product-list .text {
    width: 480px;
    height: 100px;
    flex-shrink: 0;
    padding: 35px 26px 40px;
    font-size: 28px;
    line-height: 1;
  }
}

@media screen and (max-width: 1200px) {
  .product-list.grid--pc2col .grid__item {
    width: 100%;
  }

  .product-list li {
    justify-content: center;
}
}

.silverfort2 {
  position: relative;
  padding-bottom: 80px;
  background: #fff;
}

.silverfort2 .bg {
  margin-left: -20px;
  margin-right: -20px;
}

.silverfort2>.container {
  margin-top: -320px;
}


.silverfort2__title {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.silverfort2 .solution-list {
  margin-top: 30px;
}

.silverfort2 .solution-list .card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  border: 2px solid var(--3, #FF7F3E);
  padding: 20px;
  text-align: center;
  margin-top: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.silverfort2 .solution-list .number {
  border-radius: 15px;
  background: linear-gradient(90deg, #FFBE01 0%, #FF7F3E 100%);
  text-align: center;
  font-weight: 700;
  padding: 6px 0;
  width: 100%;
}

.silverfort2 .solution-list img {
  width: auto;
  margin: 24px auto;
  height: 141px;
  flex-shrink: 0;
}

.silverfort2 .solution-list .text {
  color: #FF7F3E;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 16px;
  background: #F7F7F7;
  padding: 1rem;
  width: 100%;
}

@media screen and (min-width: 768px),
print {
  .silverfort2 .bg {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .silverfort2 .bg img {
    aspect-ratio: 1419.86/363.08;
    width: 100%;
  }

  .silverfort2__logo {
    width: 250px;
    margin: 0 auto;
  }

  .silverfort2__title {
    font-size: 26px;
  }

  .grid--pc4col.solution-list .card {
    width: calc((100% - 60px)/4);
  }
}

@media (width <=1200px) {
  .silverfort2>.container {
    margin-top: -260px;
  }
}

@media (768px <=width <=1000px) {
  .silverfort2>.container {
    margin-top: -180px;
  }
}

.silverfort3 {
  background: #fff;
  padding-top: 40px;
}

/* category
------------------------------------------------------ */
.category {
  margin-top: 40px;
}

.category__list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}

.category__content {
  display: none;
}

.category__content.active {
  display: block;
}

@media screen and (min-width: 576px),
print {
  .category__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category__item {
  display: block;
  padding: 10px;
  background: #090909;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}

.category__item.active {
  background: #FF7F3E;
  color: #fff;
}

@media screen and (min-width: 768px),
print {
  .category {
    border-bottom: 5px solid #FF7F3E;
  }

  .category__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 50px;
    padding-right: 50px;
    gap: 3px;
  }

  .category__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 12px) / 6);
    height: 60px;
  }

  .category__item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 5px 5px 15px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
  }

  .category__item::after {
    content: "";
    width: 23px;
    height: 10px;
    background: url(../img/arrow4.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 46px;
    left: 44%;
  }

  .category__item:hover {
    background: #FF7F3E;
  }

}

/*content */

.category__title {
  color: #FF7F3E;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.category__content .heading-lv2-default {
  border-bottom: solid 4px #FF7F3E;
}

.category__content section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.category__content section>* {
  margin-top: 30px;
}

.category__center>* {
  margin-top: 30px;
}

.category__content section>h3 {
  margin-top: 0;
}

.category__content .section--bg {
  background: #F7F7F7;
  padding-top: 50px;
  padding-bottom: 50px;
}


.category__thumb {
  margin-top: 20px;
}

.category__body {
  margin-top: 20px;
}

.category__center .category__title {
  margin-top: 0;
}

.category__text {
  margin-top: 20px;
}

.category__text span {
  padding-left: 1rem;
}

@media screen and (min-width: 768px),
print {

  .category__title {
    font-size: 26px;
  }

  .category__inner {
    display: flex;
    gap: 20px;
  }

  .category__body {
    width: calc(100% / 2);
  }

  .category__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .category__center {
    max-width: 1000px;
    margin: 0 auto;
  }

  .category__center .category__thumb {
    margin-top: 50px;
  }

  .category__desc {
    max-width: 996px;
    margin: 30px auto 0;
  }

  .category__text {
    margin-left: 20px;
  }

}



