@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 400;
    src: url('../font/NotoSansJP-Regular.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 700;
    src: url('../font/NotoSansJP-Bold.woff') format('woff');
    font-display: swap;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
	font-family: "NotoSansCJKjp", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	color:#333;
	font-size:16px;
	font-weight: 400;
	line-height:1.75;
    margin: 0;
    padding: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

body.sp-burger {
    height: 100%;
    overflow: hidden;
}
a {
	color: #DA291C;
	text-decoration: none;
    transition-duration: 0.3s;
    word-break: break-all;
}
a img {
    transition-duration: 0.3s;
}
a:hover {
    color: #333;
    text-decoration: underline;
}
a:hover img {
    opacity: 0.6;
}
img {
    vertical-align: top;
    width: 100%;
    max-width: max-content;
    height: auto;
    margin: 0;
    padding: 0;
}
p {
    text-align: justify;
}
.fadein {
    opacity : 0;
    transition : all 0.4s ease-out;
    transform: translate(0, 80px);
}

.fadein.active{
    opacity : 1;    transform: translate(0, 0);
}
.fadein01 {
    opacity : 0;
    transition : all 0.4s ease-out;
    transform: translate(0, 80px);
}

.fadein01.active{
    opacity : 1;    transform: translate(0, 0);
}
.fadein02 {
    opacity : 0;
    transition : all 0.4s ease-out;
    transform: translate(0, 80px);
}

.fadein02.active{
    opacity : 1;    transform: translate(0, 0);
}
.fadein03 {
    opacity : 0;
    transition : all 0.4s ease-out;
    transform: translate(0, 80px);
}

.fadein03.active{
    opacity : 1;    transform: translate(0, 0);
}
/*============================================================================

	header

============================================================================*/

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 499;
    background-color: #FFF;
}
header .h-inner {
    width: 100%;
    height: 90px;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
header.TopFix {
    animation: TFAnime 0.8s forwards;
}
header.UpMove.TopFix {
    animation: DownAnime 0.3s forwards;
}

@keyframes TFAnime {
  from {
    background-color: rgba(255,255,255,1);
  }
  to {
    background-color: rgba(255,255,255,1);
  }
}

/*　上に上がる動き　*/
header.UpMove {
    animation: UpAnime 0.3s forwards;
}
header.DownMove.UpMove {
    animation: UpAnime 0.3s forwards;
}

@keyframes UpAnime {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-90px);
  }
}
/*　下に下がる動き　*/
header.DownMove {
    background-color: #FFF;
    animation: DownAnime 0.3s forwards;
}
@keyframes DownAnime {
  from {
    transform: translateY(-90px);
  }
  to {
    transform: translateY(0);
  }
}

header .logo {
    position: absolute;
    top: 11px;
    right: 13px;
    padding: 0;
    display: inline-block;
}
header .logo-fortinet {
    font-weight: normal;
    margin: 14px 0 0 17px;
    padding: 0;
}
header .logo-fortinet > a {
    text-decoration: none;
    color: #333;
}
header .logo-fortinet > a:hover {
    color: #333;
    text-decoration: none;
}
header .logo-fortinet > a > p {
    margin: 0 0 20px 2px;
    padding: 0;
    font-size: 11px;
    line-height: 11px;
}


header nav#sub-nav {
    font-size: 14px;
    flex: 1;
}
header nav#sub-nav a {
    color: #333;
    position: relative;
    box-sizing: border-box;
}
header nav#sub-nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: #DA291C;
    position: absolute;
    bottom: 1px;
    left: 0;
    transition: .3s;
}
header nav#sub-nav a:hover {
    text-decoration: none;
    width: 100%;
}
header nav#sub-nav a:hover::after {
    width: 100%;
}
header nav#sub-nav a.active::after {
    width: 100%;
}
header nav#sub-nav ul {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
    list-style: none;
    margin: 0 16px;
    padding: 0;
    height: 100%;
}
header nav#sub-nav li {
    margin-right: 14px;
    margin-bottom: 16px;
}
header nav#sub-nav li:last-child {
    margin-right: 0;
}

.globalnav {
    position: relative;
    background-color: #1A2692;
    height: 44px;
}
header nav#js-nav {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    list-style: none;
    font-size: 16px;
    width: 100%;
    height: 44px;
}
header nav#js-nav a {
    color: #FFF;
    position: relative;
    box-sizing: border-box;
}
header nav#js-nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: #DA291C;
    position: absolute;
    bottom: 1px;
    left: 0;
    transition: .3s;
}
header nav#js-nav a:hover {
    text-decoration: none;
    width: 100%;
}
header nav#js-nav a:hover::after {
    width: 100%;
}
header nav#js-nav a.active::after {
    width: 100%;
}


header nav#js-nav ul {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav#js-nav li {
    margin-right: 34px;
}
header nav#js-nav li:last-child {
    margin-right: 0;
}
header nav#js-nav li.sp_menu {
    display: none;
}
.right-cta {
    position: fixed;
    top: 158px;
    right: 0;
    z-index: 10;
}
.right-cta.UpMove.TopFix {
    animation: DownAnime 0.3s forwards;
}
/*　上に上がる動き　*/
.right-cta.UpMove {
    animation: UpAnime 0.3s forwards;
}
.right-cta.DownMove.UpMove {
    animation: UpAnime 0.3s forwards;
}
/*　下に下がる動き　*/
.right-cta.DownMove {
    animation: DownAnime 0.3s forwards;
}
.right-cta .right-cta-btn {
    width: 58px;
    min-height: 200px;
    margin-bottom: 10px;
    background-color: #DA291C;
    transition: all 0.15s ease;
}
.right-cta .right-cta-btn:hover {
    background-color: #c30d23;
}
.right-cta .right-cta-btn:last-child {
    margin-bottom: 0;
}
.right-cta .right-cta-btn a {
    height: 200px;
    width: 100%;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.right-cta .right-cta-btn a span {
    color: #FFF;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 1rem;
    padding-top: 1.6rem;
    position: relative;
    line-height: 120%;
}
.right-cta .right-cta-btn a:hover {
    text-decoration: none;
}
.right-cta .right-cta-contact a span::before {
    position: absolute;
    top: 0;
    left: -3px;
    content: url("../img/icon_contact.svg");
}
.right-cta .right-cta-download a span::before {
    position: absolute;
    top: 0;
    left: -3px;
    content: url("../img/icon_download.svg");
}
.right-cta .right-cta-mailmaga a span::before {
    position: absolute;
    top: 0;
    left: -1px;
    content: url("../img/icon_mailmaga.svg");
}
.right-cta-mo {
    display: none;
}

@media screen and (min-width: 1024px) {
    header nav > ul > li > span {
        height: 100%;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        transition-duration: 0.3s;
    }
    header nav > ul > li > span > a {
        padding: 10px 0;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: auto;
        position: absolute;
        top: 24px;
        left: 0;
    }
    header nav > ul > li > span > a:hover {
        text-decoration: none;
    }
    header nav > ul > li > span > a::after {
      background: #AD9D2F;
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      width: 100%;
      height: 4px;
      transform: scale(0, 1);
      transform-origin: left top;
      transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
      z-index: -1;
    }
    header nav > ul > li:hover > span {
        color: #AD9D2F;
    }
    header nav > ul > li:hover > span > a::after {
      transform: scale(1, 1);
    }
}

@media screen and (max-width: 1024px) {
    .globalnav {
        height: 60px;
    }
    #sub-nav {
        display: none;
    }
    header nav#js-nav {
        display: block;
        overflow-x: hidden;
        overflow-y: auto;
        position: absolute;
        right: 0;
        left: 0;
        top: 60px;
        width: 100%;
        height: calc(100vh - 130px);
        transform: translateX(100%);
        transition: ease .4s;
    }
    header nav#js-nav.UpMove {
        height: calc(100vh - 60px);
    }
    header nav#js-nav.active {
        transform: translateX(0);
    }
    header nav#js-nav ul {
        background-color: #1A2692;
        padding: 0 30px 15px;
        box-sizing: border-box;
        display: block;
        list-style: none;
        margin: 0;
        width: 100%;
        height: auto;
    }
    header nav#js-nav li {
        margin: 0;
    }
    header nav#js-nav li a {
        display: block;
        padding: 15px 35px;
    }
    header nav#js-nav li.sp_menu {
        display: block;
        border-bottom: solid 1px #ddd;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    header nav#js-nav > ul > li {
        padding: 0;
    }
    header nav#js-nav li > span {
        display: block;
        position: relative;
        padding: 10px 0;
    }
    header nav#js-nav li > span > a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: inline-block;
    }
    header nav#js-nav > ul > li > a {
        height: auto;
    }
    header nav#js-nav > ul > li:hover > a > span::after {
        display: none;
    }
    header nav#js-nav > ul > li > a > span::after {
        display: none;
    }
    .right-cta {
        display: none;
    }
    .right-cta-mo {
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
        background-color: #FFF;
        padding: 30px 30px 80px;
        box-sizing: border-box;
    }
    .right-cta-mo .right-cta-btn {
        width: calc(33.3333% - 6.666px);
        min-width: 190px;
        background-color: #DA291C;
        transition: all 0.15s ease;
    }
    .right-cta-mo .right-cta-btn:hover {
        background-color: #c30d23;
    }
    .right-cta-mo .right-cta-btn a {
        height: 100%;
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
        display: block;
        text-align: center;
    }
    .right-cta-mo .right-cta-btn a span {
        color: #FFF;
        font-size: 18px;
        font-weight: bold;
        padding-left: 30px;
        position: relative;
        margin: 0 auto;
    }
    .right-cta-mo .right-cta-btn a:hover {
        text-decoration: none;
    }
    .right-cta-mo .right-cta-contact a span::before {
        position: absolute;
        top: 2px;
        left: 0;
        content: url("../img/icon_contact.svg");
    }
    .right-cta-mo .right-cta-download a span::before {
        position: absolute;
        top: 2px;
        left: 0;
        content: url("../img/icon_download.svg");
    }
    .right-cta-mo .right-cta-mailmaga a span::before {
        position: absolute;
        top: 2px;
        left: 0;
        content: url("../img/icon_mailmaga.svg");
    }
}


/* ハンバーガーメニュー */
.hamburger {
    display: none;
}

.hamburger span {
  width: 100%;
  height: 4px;
  background-color: #FFF;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 7px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
    .header__hamburger {
        position: absolute;
        top: 14px;
        right: 10px;
        width: 54px;
        height: 38px;
        appearance: auto;
        text-rendering: auto;
        color: buttontext;
        letter-spacing: normal;
        word-spacing: normal;
        line-height: normal;
        text-transform: none;
        text-indent: 0px;
        text-shadow: none;
        display: inline-block;
        text-align: center;
        align-items: flex-start;
        cursor: default;
        box-sizing: border-box;
        background-color: buttonface;
        margin: 0em;
        padding-block: 1px;
        padding-inline: 6px;
        border-width: 2px;
        border-style: outset;
        border-color: buttonborder;
        border-image: initial;
    }
    .hamburger {
        display: inline-block;
        background-color: transparent;
        border-color: transparent;
        z-index: 9999;
    }
}


/*============================================================================

	#footer

============================================================================*/

footer {
    width: 100%;
    margin: 0;
    background-color: #333333;
    text-align: center;
    position: relative;
}
.footer-inner {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
    text-align: left;
}
.footer-inner a {
    color: #FFF;
}
.footer-inner a.opne-new::after {
    content: url("../img/icon_open_new.svg");
    margin: 0 0 0 5px;
    vertical-align: middle;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-menu {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    gap: 10px;
}
.footer-menu ul {
    list-style: none;
    padding: 0 0 0 5px;
    margin: 0;
}
.footer-menu-left {
    
}
.footer-menu-center {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    gap: 15px;
}
.footer-menu-right {
}
.hierarchy-1 {
    font-size: 16px;
    line-height: 120%;
    font-weight: bold;
    margin-bottom: 12px;
}
.hierarchy-2 {
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
    .footer-menu-right {
        padding-right: 58px;
    }
}
@media screen and (max-width: 1024px) {
    .footer-menu-right {
        padding-right: 0;
    }
}
@media screen and (max-width: 980px) {
    .footer-menu-center {
        display: inline;
    }
    .hierarchy-dummy {
        display: none;
    }
}
@media screen and (max-width: 810px) {
    .footer-menu {
        display: inline;
    }
    .hierarchy-2 {
        margin-bottom: 16px;
    }
    .hierarchy-2 {
        margin-bottom: 14px;
    }
}
@media screen and (max-width: 768px) {
    .footer-inner {
        padding: 15px;
    }
    .footer-menu-center {
        display: block;
        padding-bottom: 10px;
    }
    .hierarchy-1 {
        margin-bottom: 18px;
    }
}
.pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5;
    margin: 0;
    padding: 0;
    width: 58px;
    height: 58px;
}

.pagetop a {
    display: inline-block;
    background-color: #DA291C;
    width: 58px;
    height: 58px;
    position: relative;
    text-align: center;
}
.pagetop a:hover {
    background-color: #c30d23;
}
.pagetop img {
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 17px);
}
@media screen and (max-width: 1024px) {
    .pagetop {
        bottom: 0;
        right: 0;
    }
}
.footer-cta {
    width: 100%;
    min-height: 50px;
    padding: 0 30px;
    box-sizing: border-box;
    background-color: #F5F5F5;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.footer-cta > ul {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1000px;
    list-style: none;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
    gap: 45px;
    line-height: 120%;
}
.footer-cta > ul > li {
    
}
.footer-cta > ul > li > a {
    font-size: 14px;
    line-height: 120%;
}
@media screen and (max-width: 768px) {
    .footer-cta {
        padding: 0 15px;
    }
}
@media screen and (max-width: 420px) {
    .footer-cta > ul {
        gap: 15px;
    }
}
.copyright {
    min-height: 50px;
    background-color: #FFF;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    padding: 0 15px;
}
.copyright small {
    font-size: 14px;
    line-height: 120%;
    margin: 0;
    padding: 0;
}



/*==================================================================

	共通

==================================================================*/

main {
    display: block;
    padding-top: 92px;
}
.inner {
    max-width: 1060px;
    height: inherit;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}
.inner::after {
	display: block;
	clear: both;
	content: "";
}
@media screen and (max-width: 768px) {
    .inner {
        padding: 0 15px;
    }
}
mark {
    color: #DA291C;
    background-color: transparent;
}

.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

.mt-00 {
    margin-top: 0 !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mt-70 {
    margin-top: 70px !important;
}
.mt-80 {
    margin-top: 80px !important;
}
.mt-90 {
    margin-top: 90px !important;
}
.mb-00 {
    margin-bottom: 0 !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.mb-60 {
    margin-bottom: 60px !important;
}
.mb-70 {
    margin-bottom: 70px !important;
}
.mb-80 {
    margin-bottom: 80px !important;
}
.mb-90 {
    margin-bottom: 90px !important;
}
.pall-15 {
    padding: 15px !important;
}
.pb-00 {
    padding-bottom: 0 !important;
}
.pb-20 {
    padding-bottom: 20px !important;
}
.width-300 {
    width: 100%;
    max-width: 300px;
}
.mo-object {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc-object {
        display: none;
    }
    .mo-object {
        display: inline;
    }
}
h2.regular {
    position: relative;
    font-size: 28px;
    line-height: 145%;
    font-weight: bold;
    padding: 0 0 0 35px;
    margin: 0 0 44px;
}
h2.regular::before {
    content: url("../img/bg_h2.svg");
    position: absolute;
    top: 2px;
    left: 0;
}
h2.specialty {
    font-size: 28px;
    line-height: 145%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 44px;
}
h3.regular {
    font-size: 24px;
    line-height: 125%;
    font-weight: bold;
    padding: 0 17px 15px;
    margin: 0 0 40px;
    border-bottom: 1px solid #CCCCCC;
}
h3.specialty {
    font-size: 23px;
    line-height: 160%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px;
}
h3.specialty02 {
    font-size: 20px;
    line-height: 125%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px;
}
h4.regular {
    font-size: 20px;
    line-height: 150%;
    font-weight: bold;
    padding: 0;
    margin: 0 0 30px;
}
h5.regular {
    font-size: 17px;
    line-height: 150%;
    font-weight: bold;
    padding: 0;
    margin: 0 0 40px;
}
body .usual-contents {
	font-size: 17px;
}
body .usual-contents a {
    word-break: break-all;
}
body #induction-contents {
    
}
.txt-pattern02 {
    font-size: 16px;
    line-height: 145%;
}
.txt-notes {
    font-size: 13px;
    line-height: 145%;
}
.txt-strong {
    font-size: 17px;
    font-weight: bold;
    line-height: 145%;
}
.txt-strong02 {
    font-size: 28px;
    font-weight: bold;
    line-height: 145%;
}
.txt-keep {
    word-break: keep-all;
}
.txt-break {
    word-break: break-all;
}
.txt-red {
    color: #DA291C;
}
.txt-blue {
    color: #1A2692;
}
@media screen and (max-width: 768px) {
    h2.regular {
        font-size: 26px;
    }
    h2.regular::before {
        content: url("../img/bg_h2.svg");
        position: absolute;
        top: 2px;
        left: 0;
    }
    h2.specialty {
        font-size: 26px;
    }
    h2.specialty br {
        display: none;
    }
    h3.regular {
        font-size: 19px;
    }
    h3.specialty {
        font-size: 19px;
    }
    h3.specialty02 {
        font-size: 18px;
    }
    h4.regular {
        font-size: 17px;
    }
    h5.regular {
        font-size: 16px;
    }
    body .usual-contents {
        font-size: 16px;
    }
}
body .usual-contents ul.regular {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
body .usual-contents ul.regular > li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 10PX;
    line-height: 140%;
}
body .usual-contents ul.regular > li::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #3845B8;
    position: absolute;
    top: 10px;
    left: 7px;
}
body .usual-contents ol.regular {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    counter-reset: listnum;
}
body .usual-contents ol.regular > li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 10PX;
    line-height: 140%;
}
body .usual-contents ol.regular > li::before {
    counter-increment: listnum;
	content: counter(listnum);
    color: #3845B8;
    position: absolute;
    top: 0;
    left: 4px;
}
hr.regular {
    width: 100%;
    height: 1px;
    border: none;
    margin: 0;
    padding: 0;
    background-color: #CCCCCC;
}
hr.hr-square {
    width: 26px;
    height: 12px;
    border: none;
    margin: 0 auto;
    padding: 0;
    background-image: url("../img/bg_hr_01.svg");
    background-repeat: no-repeat;
}
.btn-regular {
}
.btn-regular a {
    width: 100%;
    max-width: 350px;
    display: inline-block;
    background-color: #DA291C;
    color: #FFF;
    padding: 15px;
    box-shadow: 0px 5px 10px 2px rgba(85, 85, 85, 0.15);
    font-size: 20px;
    line-height: 140%;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box
}
.btn-regular a:hover {
    text-decoration: none;
    background-color: #c30d23;
}
.btn-small {
}
.btn-small a {
    display: inline-block;
    background-color: #DA291C;
    color: #FFF;
    padding: 10px 20px;
    box-shadow: 0px 5px 10px 2px rgba(85, 85, 85, 0.15);
    text-align: center;
}
.btn-small a:hover {
    text-decoration: none;
    background-color: #c30d23;
}
.txt-right {
    text-align: right;
}
.txt-left {
    text-align: left;
}
.txt-center {
    text-align: center;
}
.column-item {
    box-sizing: border-box;
    background-color: #FFF;
    border: 1px solid #ccc;
    padding: 30px;
}
.column-item.bg-none {
    background-color: transparent;
}
.column-item.border-none {
    border: none;
    padding: 0;
}
.column-one {
    
}
.column-one > .column-item {
    width: 100%;
}
.column-two {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    gap: 30px;
}
.column-two > .column-item {
    width: 50%;
}
.column-three {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    gap: 30px;
}
.column-three > .column-item {
    width: 33.333%;
}
.column-four {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    gap: 30px;
}
.column-four > .column-item {
    width: 25%;
}
.flow-box {
    
}
.flow-item {
    border: 1px solid #CCCCCC;
    background-color: #FFF;
    margin: 0;
    padding: 0;
}
.flow-item.flow-next {
    position: relative;
    margin-bottom: 65px;
}
.flow-item.flow-next::after {
    content: "";
    background-image: url("../img/flow-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 170px;
    height: 30px;
    position: absolute;
    bottom: -50px;
    left: calc(50% - 85px);
}
.flow-ttl {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    padding: 12px;
    margin: 0;
}

.flow-ttl > span {
    position: relative;
    display: block;
    width: 55px;
    margin: 0 16px 0 0;
    padding: 0 5px;
    font-size: 23px;
    line-height: 150%;
    font-weight: bold;
    box-sizing: border-box;
}
.flow-ttl > span::after {
    content: "";
    background-image: url("../img/bg_flow_number.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 5px;
    height: 26px;
    position: absolute;
    top: 5px;
    right: 0;
}
.flow-ttl-txt {
    flex: 1;
    margin: 0;
    padding: 0;
    font-size: 23px;
    line-height: 150%;
    font-weight: bold;
}
.flow-txt {
    width: 100%;
    background-color: #F5F5F5;
    padding: 20px 40px 25px;
    box-sizing: border-box;
}
.flow-txt > p {
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 768px) {
    .column-item {
        padding: 15px;
    }
    .column-one > .column-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .column-two {
        display: block;
    }
    .column-two > .column-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .column-two > .column-item:last-child {
        margin-bottom: 0;
    }
    .column-three {
        display: block;
    }
    .column-three > .column-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .column-three > .column-item:last-child {
        margin-bottom: 0;
    }
    .column-four {
        display: block;
    }
    .column-four > .column-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .column-four > .column-item:last-child {
        margin-bottom: 0;
    }
    .flow-txt {
        padding: 15px;
    }
}
.bg-gray {
    background-color: #F5F5F5;
    width: 100%;
    padding: 45px 0;
}
.pagination {
    text-align: center;
}
.pagination-list {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination-item-link {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    width: 35px;
    height: 35px;
    background-color: #fff;
    font-size: 20px;
    transition: all 0.15s linear;
    border: 1px solid #ccc;
    color: #333;
}
.pagination-item-link-icon {
    width: 20px;
}
.pagination-item-link.active {
    pointer-events: none;
    background-color: #1A2692;
    color: #fff;
}
.pagination-item-link:not(.active):hover {
    background-color: #1A2692;
    color: #fff;
    text-decoration: none;
}
.pagination-arrow .pagination-item-link {
    border: none;
    padding: 0 5px;
    width: auto;
}
.pagination-arrow .pagination-item-link:not(.active):hover {
    background-color: transparent;
    color: #fff;
    opacity: 0.6;
}
.flex-content {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
.flex-gap05 {
    gap: 5px;
}
.flex-gap10 {
    gap: 10px;
}
.flex-gap30 {
    gap: 30px;
}
.flex-gap40 {
    gap: 40px;
}
.flex-content-vr-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-content-ju-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-content-ju-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-content-development {
    flex: 1;
}
.box-numbering {
    width: 70px;
    font-size: 35px;
    line-height: 100%;
    margin: 0 28px 0 0;
    padding: 0;
    position: relative;
}
.box-numbering::after {
    content: url("../img/bg_numbering.svg");
    position: absolute;
    top: 0;
    right: 0;
}
.box-numbering > p {
    margin: 0;
    padding: 0;
}
.numbering-txt {
    flex: 1;
    margin: 0;
    padding: 0;
}
.numbering-txt > p {
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 520px) {
    .column-item.flex-content {
        display: block;
    }
    .box-numbering {
        width: 50px;
        font-size: 24px;
        line-height: 100%;
        margin: 0 0 0.8rem 0;
        padding: 0;
    }
}
@media screen and (max-width: 768px) {
    .flex-content {
        display: block;
    }
    .flex-content-ju-between {
        text-align: center;
    }
    .sp-revolution {
        transform: rotate(90deg);
    }
    .box-numbering {
        width: 55px;
        font-size: 28px;
        margin: 0 0 10px 0;
    }
    .box-numbering::after {
        top: 2px;
        right: 0;
    }
}
.box-skyblue {
    border: 1px solid #00ACEE;
}
.box-skyblue mark {
    color: #00ACEE;
}
.box-red {
    border: 1px solid #DA291C;
}
.box-red mark {
    color: #DA291C;
}
.box-green {
    border: 1px solid #00AF50;
}
.box-bg-lightgreen {
    background-color: #f1fff7;
}
.box-green mark {
    color: #00AF50;
}
.box-blue {
    border: 1px solid #005293;
}
.box-blue mark {
    color: #005293;
}
.box-purple {
    border: 1px solid #9062CD;
}
.box-purple mark {
    color: #9062CD;
}
.box-silver {
    border: 1px solid #A1B1C7;
}
.box-silver mark {
    color: #A1B1C7;
}
.box-orange {
    border: 1px solid #FF9E00;
}
.box-orange mark {
    color: #FF9E00;
}
.box-lightred {
    border: 1px solid #FF0000;
}
.box-lightred mark {
    color: #FF0000;
}
.box-lightblue {
    border: 1px solid #2CCCD2;
}
.box-lightblue mark {
    color: #2CCCD2;
}


.box-info {
    border: 1px solid #00cc66;
    background-color: #ccffcc;
    box-sizing: border-box;
    padding: 30px 30px 30px 100px;
    position: relative;
}
.box-info::before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: 25px;
    background-image: url("../img/icon_info.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.box-warning {
    border: 1px solid #ffcc00;
    background-color: #ffffcc;
    box-sizing: border-box;
    padding: 30px 30px 30px 100px;
    position: relative;
}
.box-warning::before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: 25px;
    background-image: url("../img/icon_warning.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.box-error {
    border: 1px solid #ff5050;
    background-color: #ffcccc;
    box-sizing: border-box;
    padding: 30px 30px 30px 100px;
    position: relative;
}
.box-error::before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: 25px;
    background-image: url("../img/icon_error.svg");
    background-repeat: no-repeat;
    background-size: cover;
}



table.regular {
    box-sizing: border-box;
    border: none;
    width: 100%;
    margin: 0 0 2rem;
    padding: 0;
    font-size: 16px;
    line-height: 155%;
}
@media screen and (max-width: 768px) {
    .table-box {
        display: block;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .table-box table.regular {
        display: block;
        width: max-content;
    }
}
table.regular th {
    box-sizing: border-box;
    border-left: 1px solid #FFF;
    background-color: #87C9FF;
    padding: 10px 15px;
}
table.regular th:first-child {
    border-left: none;
}
table.regular td {
    box-sizing: border-box;
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
    background-color: #F5F5F5;
    padding: 10px 15px;
}
table.regular td:first-child {
    border-left: none;
}
table.regular tr.rowspan td:first-child {
    border-left: 1px solid #FFF;
}
table.regular tr.bg-strong td {
    background-color: #DDD;
    font-weight: bold;
}
table.regular.table-txt-small {
    font-size: 13px;
    line-height: 155%;
}
table.regular.table-txt-small th {
    padding: 5px 10px;
}
table.regular.table-txt-small td {
    padding: 5px 10px;
}
@media screen and (max-width: 768px) {
    table.regular.table-txt-small {
        font-size: 16px;
    }
    table.regular.table-txt-small th {
        padding: 10px 15px;
    }
    table.regular.table-txt-small td {
        padding: 10px 15px;
    }
}
.author {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
.author-photo {
    width: 180px;
    margin-right: 25px;
}
.author-photo-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    text-align: center;
    margin: 0;
    overflow: hidden;
}
.author-photo-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    height: auto;
    transition-duration: 0.3s;
}
.author-txt {
    flex: 1;
}
.author-name {
    font-size: 18px;
    line-height: 150%;
    font-weight: bold;
    margin: 0 0 1rem;
    padding: 0;
}
.author-title {
    font-size: 16px;
    line-height: 150%;
    margin: 0 0 1rem;
    padding: 0;
}
.author-profile {
    font-size: 15px;
    line-height: 160%;
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 580px) {
    .author {
        display: block;
    }
    .author-photo {
        width: 180px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.cta-induction {
}
.cta-induction > a {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    background-color: #F5F5F5;
    padding: 25px 30px;
    box-sizing: border-box;
    color: #333;
}
.cta-induction > a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: #DA291C;
}
.cta-induction > a .cta-induction-arrow img {
    transition-duration: 0.3s;
}
.cta-induction > a:hover .cta-induction-arrow img {
    filter: brightness(0) invert(1);
}
.cta-induction-photo {
    width: 188px;
    margin-right: 25px;
}
.cta-induction-photo-img {
    position: relative;
    width: 100%;
    padding-top: 79.7872%;
    text-align: center;
    margin: 0;
    overflow: hidden;
}
.cta-induction-photo-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    height: auto;
    transition-duration: 0.3s;
}
.cta-induction-box {
    flex: 1;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
.cta-induction-txt-box {
    flex: 1;
}
.cta-induction-title {
    font-size: 18px;
    line-height: 150%;
    font-weight: bold;
    margin: 0 0 1rem;
    padding: 0;
}
.cta-induction-summary {
    font-size: 15px;
    line-height: 160%;
    margin: 0;
    padding: 0;
}
.cta-induction-arrow {
    width: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
@media screen and (max-width: 768px) {
    .cta-induction-box {
            display: block;
    }
    .cta-induction-photo {
        width: 188px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
/*==================================================================

	下層パンくず

==================================================================*/
#breadSection {
    padding: 10px 0 50px;
}
ol.breadcrumb {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
    line-height: 140%;
    margin: 0;
    padding: 0;
}
li.breadcrumb__list:not(:last-of-type)::after {
    content: "｜";
    color: #ccc;
}

/*==================================================================

	HOME

==================================================================*/

/* メインビジュアル
======================================================*/

#main-visual {
    width: 100%;
    height: 383px;
    padding: 55px 30px 0;
    margin: -55px 0 0;
    background-image: url("../../img/bg_header.png");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}
.main-visual-inner {
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    gap: 40px;
}

.main-visual-inner .main-catch {
    min-width: 525px;
    word-break: break-all;
}
.main-visual-inner .main-catch p {
    font-size: 25px;
    font-weight: bold;
}
.main-visual-inner .main-catch p.main-catch-txt {
    font-size: 17px;
    line-height: 205%;
    font-weight: bold;
}
.main-visual-inner .main-img {
    flex: 1;
}
@media screen and (max-width: 1024px) {
    .main-visual-inner .main-catch {
        min-width: 430px;
    }
    .main-visual-inner .main-catch p {
        font-size: 22px;
    }
}
@media screen and (max-width: 760px) {
    #main-visual {
        height: auto;
        min-height: 200px;
        padding: 70px 15px 0;
        margin: -70px 0 0;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .main-visual-inner {
        margin: 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .main-visual-inner .main-catch {
        min-width: auto;
    }
    .main-visual-inner .main-catch p {
        font-size: 26px;
        text-align: center;
    }
    .main-visual-inner .main-catch p br {
        display: none;
    }
    .main-visual-inner .main-img {
        display: none;
    }
}

/* お知らせ
======================================================*/
#news {
    padding: 50px 0;
}
ul.news-newslist {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.news-newslist > li {
    border-bottom: 1px solid #ccc;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    gap: 20px;
    padding: 12px 10px;
}
ul.news-newslist > li:first-child {
    border-top: 1px solid #ccc;
}
.news-newslist-header {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    gap: 20px;
    width: 190px;
}
.news-newslist-date {
}
.news-newslist-cate {
    position: relative;
    padding: 2px 0 0 30px;
    font-size: 14px;
}
.news-cate-critical::before {
    content: url("../img/bg_news_critical.svg");
    position: absolute;
    top: 5px;
    left: 0;
}
.news-cate-notice::before {
    content: url("../img/bg_news_notice.svg");
    position: absolute;
    top: 5px;
    left: 0;
}
.news-cate-event::before {
    content: url("../img/bg_news_event.svg");
    position: absolute;
    top: 5px;
    left: 0;
}
.news-cate-news::before {
    content: url("../img/bg_news_news.svg");
    position: absolute;
    top: 5px;
    left: 0;
    
}
.news-cate-update::before {
    content: url("../img/bg_news_update.svg");
    position: absolute;
    top: 5px;
    left: 0;
}
.news-cate-blog::before {
    content: url("../img/bg_news_blog.svg");
    position: absolute;
    top: 5px;
    left: 0;
}
.news-newslist-ttl {
    flex: 1;
}
.news-newslist-ttl a {
    color: #333;
}
@media screen and (max-width: 768px) {
    ul.news-newslist > li {
        display: block;
    }
}

/* FORTINETT DISTRIBUTED BY SCSK
======================================================*/
#distributed {
    padding-bottom: 80px;
}
.distributed-header {
    background-color: #EBF5FF;
}
.distributed-header-bg {
    background-image: url("../../img/bg_distributed.png");
    background-position: bottom;
    background-repeat: repeat-x;
    padding: 50px 0 110px;
}
.distributed-header p {
    font-size: 17px;
    font-weight: bold;
    line-height: 220%;
    margin: 0;
    padding: 0;
}

/* ソリューション
======================================================*/
#solution {
    padding-bottom: 80px;
}
ul.solution-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 40px 20px;
}
.solution-item {
    width: calc(33.333% - 13.333px);
}
.solution-thum {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.solution-thum img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    height: auto;
    transition-duration: 0.3s;
}
.solution-item a:hover .solution-thum img {
    transform: scale(1.1,1.1) translate(-45%,-45%);
    display: inline-block;
}
.solution-ttl {
    color: #333;
    font-weight: bold;
    line-height: 140%;
    margin-bottom: 15px;
}
.solution-ttl.solution-ttl-center {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    min-height: 2.8em;
}
.solution-summary {
    color: #333;
    margin-bottom: 15px;
}
ul.solution-cat {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.solution-cat li {
    
}
ul.solution-cat li::after {
    content: "｜";
    color: #ccc;
}
@media screen and (max-width: 768px) {
    .solution-item {
        width: calc(50% - 10px);
    }
    .solution-ttl.solution-ttl-center {
        display: block;
        min-height: auto;
    }
}
@media screen and (max-width: 440px) {
    .solution-item {
        width: 100%;
    }
}


#induction-contents .solution-item {
    width: calc(25% - 15px);
}
@media screen and (max-width: 768px) {
    #induction-contents .solution-item {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 380px) {
    #induction-contents .solution-item {
        width: 100%;
    }
}

/* Fortinet製品取扱マップ
======================================================*/
#product_map {
    padding-bottom: 80px;
}
.product_map-wrap {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 22px;
}
.product_map-box {
    border: 1px solid #ccc;
    padding: 15px 11px 25px;
    box-sizing: border-box;
}
.product_map-cloud_saas {
    border-top: 8px solid #B62A76;
    width: 100%;
}
.product_map-network_security {
    border-top: 8px solid #E5C53F;
    width: calc(40.92% - 14.666px);
}
.product_map-ot_security {
    border-top: 8px solid #1C9576;
    width: calc(40.92% - 14.666px);
}
.product_map-endpoint_security {
    border-top: 8px solid #9E7220;
    width: calc(18.16% - 14.666px);
}
ul.product-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 861px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 123px);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    gap: 25px 0;
}
li.product-list-item {
    text-align: center;
}
li.product-list-item.product-list-item-w {
    grid-column: 1/3;
}
li.product-list-item a {
    display: block;
    color: #333;
}
li.product-list-item a:hover {
    color: #DA291C;
    text-decoration: none;
}
li.product-list-item img {
    margin-bottom: 8px;
    transition-duration: 0.3s;
}
li.product-list-item a:hover img {
    opacity: 0.6;
}
li.product-list-item p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
}
@media screen and (max-width: 768px) {
    ul.product-list {
        max-width: none;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 25px 0;
    }
    li.product-list-item {
        text-align: center;
        width: 123px;
    }
    li.product-list-item.product-list-item-w {
        width: 246px;
    }
    .product_map-network_security {
        width: 100%;
    }
    .product_map-ot_security {
        width: 100%;
    }
    .product_map-endpoint_security {
        width: 100%;
    }
}

/* 製品情報一覧
======================================================*/
#product {
    padding-bottom: 80px;
}
ul.product-item-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 40px 20px;
}
.product-item {
    width: calc(25% - 15px);
}
.product-thum {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.product-thum img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    height: auto;
    transition-duration: 0.3s;
}
.product-item a:hover .product-thum img {
    transform: scale(1.1,1.1) translate(-45%,-45%);
    display: inline-block;
}
.product-ttl {
    color: #333;
    font-weight: bold;
    line-height: 140%;
    margin-bottom: 8px;
    word-break: break-all;
}
.product-ttl.product-ttl-center {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    min-height: 2.8em;
}
.product-summary {
    color: #333;
    font-size: 15px;
    margin-bottom: 15px;
    /*
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 3.2rem;
    */
}
ul.product-cat {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
li.product-cat-item {
    padding: 2px 5px;
    margin: 0 0 3px;
    font-size: 14px;
    line-height: 140%;
    background-color: #F5F5F5;
    width: 100%;
}
li.product-cat-item.product-cat-item-cloud_saas {
    border-left: 10px solid #B62A76;
}
li.product-cat-item.product-cat-item-network_security {
    border-left: 10px solid #E5C53F;
}
li.product-cat-item.product-cat-item-ot_security {
    border-left: 10px solid #1C9576;
}
li.product-cat-item.product-cat-item-endpoint_security {
    border-left: 10px solid #9E7220;
}
@media screen and (max-width: 768px) {
    .product-item {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 380px) {
    .product-item {
        width: 100%;
    }
}

/* ブログ
======================================================*/
#blog {
    padding-bottom: 80px;
}
ul.blog-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 40px 20px;
}
.blog-item {
    width: calc(33.333% - 13.333px);
}
.blog-thum {
    position: relative;
    margin-bottom: 12px;
}
.blog-thum .blog-thum-img {
    position: relative;
    width: 100%;
    padding-top: 81.25%; /* 16:13 */
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.blog-thum .blog-thum-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    height: auto;
    transition-duration: 0.3s;
}
.blog-item a:hover .blog-thum .blog-thum-img img {
    transform: scale(1.1,1.1) translate(-45%,-45%);
    display: inline-block;
}
.blog-thum-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.blog-thum-overlay img {
    max-width: none;
}
.blog-ttl {
    position: absolute;
    top: 62%;
    left: 0;
    width: 100%;
    font-weight: bold;
    color: #000;	//blog title text color
    margin: 0;
    padding: 0 0.5rem 0.5rem;
    box-sizing: border-box;
}
.blog-ttl.blog-ttl-center {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    min-height: 2.8em;
}
a .blog-date {
    color: #333;
    font-size: 15px;
    margin: 0 0 3px;
    padding: 0;
}
.blog-author {
    margin: 0 0 15px;
    padding: 0;
}
.blog-author　a {
    color: #333;
    font-size: 15px;
    font-weight: bold;
}
.blog-cat-box {
    clear: both;
}
ul.blog-cat {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
}
ul.blog-cat li {
    
}
ul.blog-cat li::after {
    content: "｜";
    color: #ccc;
}
ul.blog-cat li:last-child::after {
    display: none;
}
.blog-tag-box {
    clear: both;
}
ul.blog-tag {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.blog-tag li {
    
}
ul.blog-tag li::after {
    content: "｜";
    color: #ccc;
}
ul.blog-tag li:last-child::after {
    display: none;
}
@media screen and (max-width: 768px) {
    .blog-item {
        width: calc(50% - 10px);
    }
    .blog-ttl.blog-ttl-center {
        display: block;
        min-height: auto;
    }
}
@media screen and (max-width: 440px) {
    .blog-item {
        width: 100%;
    }
}

#blog-category {
    padding-bottom: 50px;
}
.blog-category-box {
    background-color: #F5F5F5;
    padding: 25px;
}
ul.blog-category-list {
    margin: 0;
    padding: 0;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}
ul.blog-category-list li::after {
    content: "｜";
    color: #ccc;
    margin-left: 10px;
}
ul.blog-category-list li:last-child::after {
    display: none;
}
@media screen and (max-width: 768px) {
    ul.blog-category-list {
        border-left: none;
        border-top: 1px solid #ccc;
        padding: 20px 0 0 0;
        margin-top: 20px;
    }
}

.usual-contents ul.blog-cat {
    margin: 0;
    padding: 0;
}
.usual-contents ul.blog-tag {
    margin: 0;
    padding: 0;
}

/* 保守サービス
======================================================*/
#support {
    padding-bottom: 80px;
}
.support-bg-img {
    background-image: url("../../img/bg_support.png");
    background-position: calc(50% + 226px) 50%;
    background-repeat: no-repeat;
}
.support-content {
    width: 100%;
    max-width: 490px;
    padding: 45px;
    box-sizing: border-box;
    background-color: #FFF;
}
@media screen and (max-width: 768px) {
    .support-content {
        padding: 30px 20px;
    }
}

/* よくある質問
======================================================*/
#faq {
    padding-bottom: 80px;
}
dl.faq-list {
    margin-bottom: 60px;
    word-wrap: break-word;
}
dt.faq-q {
    cursor: pointer;
    position: relative;
    background-color: #F5F5F5;
    margin: 0 0 5px;
    padding: 15px 72px;
    font-size: 18px;
    word-break: break-all;
}
dt.faq-q::before {
    content: url("../../img/icon_Q.svg");
    position: absolute;
    top: 20px;
    left: 20px;
}
dt.faq-q::after {
    content: url("../../img/icon_faq_arrow.svg");
    position: absolute;
    top: calc(50% - 18px);
    right: 20px;
    transform: rotate(0deg);
    transition-duration: 0.3s;
}
dt.faq-q.active::after {
    transform: rotate(180deg);
}
dd.faq-a {
    display: none;
    position: relative;
    margin: 0 0 5px;
    padding: 15px 72px;
    font-size: 20px;
    font-weight: bold;
    word-break: break-all;
}
dd.faq-a::before {
    content: url("../../img/icon_A.svg");
    position: absolute;
    top: 20px;
    left: 20px;
}

/* お役立ち資料
======================================================*/
#download {
    padding-bottom: 80px;
}
#download-category {
    padding-bottom: 50px;
    z-index: 10;
    position: relative;
}
.download-box {
    margin-top: -65px;
    padding-top: 65px;
}
ul.download-category-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 14px;
}
li.download-category-item {
    margin: 0;
    padding: 0;
    width: calc(16.666% - 11.666px);
}
li.download-category-item a {
    display: block;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #DA291C;
    background-color: #FFF;
    color: #DA291C;
}
li.download-category-item a:hover {
    border: 1px solid #DA291C;
    background-color: #DA291C;
    color: #FFF;
    text-decoration: none;
}
@media screen and (max-width: 1120px) {
    li.download-category-item {
        width: calc(33.333% - 9.333px);
    }
}
@media screen and (max-width: 520px) {
    ul.download-category-list {
        gap: 10px;
    }
    li.download-category-item {
        width: calc(50% - 5px);
    }
}
ul.download-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 40px 20px;
}
.download-item {
    width: calc(33.333% - 13.333px);
}
.download-thum {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.download-thum img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    max-width: none;
    height: auto;
    transition-duration: 0.3s;
}
.download-item a:hover .download-thum img {
    transform: scale(1.1,1.1) translate(-45%,-45%);
    display: inline-block;
}
.download-ttl {
    color: #333;
    font-weight: bold;
    line-height: 140%;
    margin-bottom: 15px;
}
.download-ttl.download-ttl-center {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    min-height: 2.8em;
}
@media screen and (max-width: 768px) {
    .download-item {
        width: calc(50% - 10px);
    }
    .download-ttl.download-ttl-center {
        display: block;
        min-height: auto;
    }
}
@media screen and (max-width: 440px) {
    .download-item {
        width: 100%;
    }
}

/*==================================================================

	CTA

==================================================================*/
#footer-in_front-cta {
    
}
.footer-in_front-cta-bg {
    width: 100%;
    background-image: url("../img/bg_footer_cta.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0 60px;
}
#footer-in_front-cta .column-item {
    border: none;
}
@media screen and (max-width: 768px) {
    #footer-in_front-cta .column-item {
        padding: 30px 20px;
    }
}

.middle-cta {
    
}
.middle-cta-bg {
    width: 100%;
    background-image: url("../img/bg_middle_cta.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px 0;
}
.middle-cta .column-item {
    border: none;
    background-color: #FFF;
}
.middle-cta .btn-regular a {
    min-width: auto;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .middle-cta .btn-regular a {
        min-width: 50%;
        width: auto;
    }
    .middle-cta .column-item {
        padding: 30px 20px;
    }
}

.renewal_date {
    background-color: #F3F3F3;
    padding: 3px 10px 4px;
    margin: 5px 0 5px 5px;
    font-size: 14px;
    line-height: 100%;
    float: right;
}

