@charset "UTF-8";
/* ///////////////////////////////////
追加CSS
/////////////////////////////////// */

/* reset */
.main-contents address {
    font-style: normal;
}

/* メインビジュアル */
/* トップ動画 .b-hero-area-movie */
.b-hero-area-movie .lyt-panel-a .panels {
    background: inherit;
}
.b-hero-area-movie .lyt-panel-a .sub-txt {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
}
@media only screen and (max-width:1280px) {
    .b-hero-area-movie .lyt-panel-a .sub-txt {
        font-size: calc(20vw*100/1280);
    }
}
@media only screen and (max-width:767px) {
    .b-hero-area-movie .lyt-panel-a .sub-txt {
        font-size: 1.6rem;
    }
}
.b-hero-area-movie .lyt-panel-a .main-txt,
.b-hero-area-movie .lyt-panel-a .main-txt > * {
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 16px;
}
@media only screen and (max-width:1280px) {
    .b-hero-area-movie .lyt-panel-a .main-txt,
    .b-hero-area-movie .lyt-panel-a .main-txt > * {
        font-size: calc(40vw*100/1280);
    }
}
@media only screen and (max-width:767px) {
    .b-hero-area-movie .lyt-panel-a .main-txt,
    .b-hero-area-movie .lyt-panel-a .main-txt > * {
        font-size: 2.4rem;
        margin-bottom: 8px;
    }
}

/* トップ動画 .b-hero-area-movie.b-style-bg-a */
.b-hero-area-movie.b-style-bg-a{
    background: url(https://www.fujitsu.com/downloads/JP/innovation/digital/fintech/images/index_fintech.png) no-repeat center center;/*背景画像*/
    background-size: cover;
    color: #000;/*文字色*/
}

/* メインビジュアル（SP時コンテンツ逆） */
@media only screen and (max-width:768px) {
    /* 動画 */
    .b-hero-area-movie.b-hero-area-sp-reverse .lyt-panel-a .panels {
        display: block;
    }
    .b-hero-area-movie.b-hero-area-sp-reverse .lyt-panel-a .panel-content {
        padding: 0 16px 24px;
    }
}
@media only screen and (max-width:767px) {
    /* 画像 */
    .hero-area-c.b-hero-area-sp-reverse .content {
        display: block;
        padding-top: 0;
    }
    .hero-area-c.b-hero-area-sp-reverse .visual {
        position: relative;
    }
}

/* メインビジュアル（SP時画像・動画コンテンツ領域を消す） */
@media only screen and (max-width:768px) {
    /* 動画 */
    .b-hero-area-movie.b-hero-area-sp-nomedia .lyt-panel-a .movie .panel-visual {
        display: none;
    }
    .b-hero-area-movie.b-hero-area-sp-nomedia .lyt-panel-a .panel-content {
        padding: 0 16px;
    }
}
@media only screen and (max-width:767px) {
    /* 画像 */
    .hero-area-c.b-hero-area-sp-nomedia .content {
        padding-top: 0;
    }
    .hero-area-c.b-hero-area-sp-nomedia .visual {
        display: none;
    }
}

/* youtube
----------------------------------------------- */

.section .youtube {
    margin: 34px auto 60px !important;
    max-width: 800px;
}
.section .youtube > div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.section .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* テキストエリア可変 .b-content-variable */
.b-content-variable.hero-area-c .content {
    overflow: hidden;
    min-height: 400px;
}
.b-content-variable.hero-area-c .content-inner {
    max-width: 40%;
    position: relative;
    z-index: 1;
}
.b-content-variable.hero-area-c .visual {
    left: 40%;
    width: calc(1280px - 40%);
}
@media only screen and (max-width: 1280px) {
    .b-content-variable.hero-area-c .content {
        min-height: calc(400vw*100/1280);
    }
    .b-content-variable.hero-area-c .visual {
        left: 0;
        width: 100%;
    }
    .b-content-variable.hero-area-c .visual>img {
        height: calc(400vw*100/1280);
    }
}
@media only screen and (max-width: 767px) {
    .b-content-variable.hero-area-c .content {
        min-height: inherit;
    }
    .b-content-variable.hero-area-c .content-inner {
        max-width: inherit !important;
    }
    .b-content-variable.hero-area-c .visual {
        left: 0;
    }
    .b-content-variable.hero-area-c .visual>img {
        height: calc(220vw*100/320);
    }
}

/* メインビジュアル：SP時の画像を中央起点で表示 .b-visual-sp-center */
@media only screen and (max-width: 767px) {
    .b-content-variable.hero-area-c .visual.b-visual-sp-center > img {
        right: 50%;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

/* テキストフルエリア */
.b-txt-full-a.b-content-variable.hero-area-c .content-inner {
    max-width: 100%;
}

/* メインビジュアル：規定外サイズの画像に対応 .b-hero-area-variable */
.hero-area-c.b-hero-area-variable {
    min-height: inherit;
    max-height: inherit;
    text-align: center;
}
@media only screen and (max-width:1280px) {
    .hero-area-c.b-hero-area-variable {
        height: auto;
    }
}


/* 背景黒以外対応 .b-lyt-hover-a*/
@media only screen and (max-width:768px) {
    .b-lyt-hover-a.lyt-hover-a .hover-content .visual a p:not(.diff-bg-d)  {
        color: #000;
    }
    .b-lyt-hover-a.lyt-hover-a .hover-content .visual .hover-hdg:not(.diff-bg-d) {
        color: #000;
    }
}
.main-contents .section .section-inner .b-lyt-hover-a:not(:last-child){margin-bottom:40px;}

/* 子要素が無いリンクリスト .b-list-link */
.b-list-link .list-link-b-wrapper {
    padding-bottom:26px;
}
.b-list-link .list-link-b-wrapper .js-toggle-links {
    padding-bottom:44px;
}
@media only screen and (max-width:768px) {
    .b-list-link .list-link-b-wrapper {
        padding-bottom:11px;
    }
    .b-list-link .list-link-b-wrapper .js-toggle-links {
        padding-bottom:0;
    }
}

/* PDF DLエリア .b-lyt-dl-item */
.b-lyt-dl-item {
    width:80%;
    margin:0 auto;
}
.b-lyt-dl-item.lyt-item-a>* {
        vertical-align: middle;
}
@media only screen and (max-width:768px) {
    /* 特長----------------------------------------------------- */
.section.keys .lyt-col-feature-a {
	margin-top: 60px !important;
}

    .b-lyt-dl-item {
        width:100%;
    }
}

/* ローカルナビゲーション */
.b-nav {
    margin: 16px 0 0;
    width: 100%;
    background-color: #dad9d6;
}

@keyframes slideDown {
    0% {
        top: -64px;
    }
    100% {
        top: 0;
    }
}

.b-nav.is-fixed  {
    position: fixed;
    left: 0;
    z-index: 201;
    margin-top: 0;
    animation-name: slideDown;
    animation-duration: .3s;
    animation-timing-function: liner;
    animation-fill-mode: forwards;
}

.b-nav.is-fixed::before {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 40px;
    background: linear-gradient(rgba(0,0,0,.16),transparent);
    pointer-events: none;
    content: "";
}

.b-nav-btn {
    display: none;
}

.b-nav-body {
    box-sizing: border-box;
    margin: 0 auto;
    padding-right: 8px;
    padding-left: 8px;
    width: 100%;
    max-width: 1280px;
    transition: top .2s;
}

.b-nav-menu {
    display: table;
    width: 100%;
}

.b-nav-menu-item {
    display: table-cell;
    position: relative;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
}
.b-nav-menu-item::before,
.b-nav-menu-item::after {
    display: block;
    position: absolute;
    background-color: #b1b1ac;
    top: 50%;
    width: 1px;
    height: 32px;
    content: "";
}
.b-nav-menu-item::before {
    left: 0;
    margin-top: -16px;
}
.b-nav-menu-item::after {
    right: -1px;
    margin-top: -16px;
}

.b-nav-menu-link {
    display: block;
    box-sizing: border-box;
    width: inherit;
    height: inherit;
    padding: 21px 34px;
    text-decoration: none;
}

.b-nav-menu-link:hover {
    color: #a30b1a;
}

.is-current .b-nav-menu-link {
    color: #a30b1a;
    font-weight: bold;
}



@media only screen and (max-width:1000px) {
    .js-b-togglemenu + [class*="hero-area"],
    .js-b-togglemenu + [class*="lyt-visual-item-"],
    .js-b-togglemenu + [class*="lyt-slider-b-wrapper"] {
        margin-top: 20px;
    }

    .b-nav {
        display: none;
        position: relative;
        padding-right: 16px;
        background-color: transparent;
        text-align: right;
    }
    [data-script-enabled=true] .b-nav {
        display: block;
    }

    .b-nav-btn {
        display: inline-block;
    }

    .b-nav-toggle-switch {
        display: inline-block;
        position: relative;
        padding: 8px 46px 8px 22px;
        background-color: #f6cfd3;
        border: 1px solid #a30b1a;
        background: #fff;
        color: #a30b1a;
        white-space: nowrap;
        line-height: 1.4;
        text-align: center;
        text-decoration: none;
        transition: background .2s;
        box-shadow: 0 1px 2px rgba(0,0,0,.18);
        cursor: pointer;
    }

    .b-nav-toggle-switch:hover {
        background-color: #f6cfd3;
    }

    .b-nav-toggle-switch::before,
    .b-nav-toggle-switch::after {
        display: block;
        position: absolute;
        top: 50%;
    }
    .b-nav-toggle-switch::before {
        right: 12px;
        margin-top: -7px;
        width: 20px;
        height: 14px;
        background: linear-gradient(#ac2330,#ac2330 2px,transparent 2px,transparent 6px,#ac2330 6px,#ac2330 8px,transparent 8px,transparent 12px,#ac2330 12px);
        content: "";
    }

    .is-open .b-nav-toggle-switch::before,
    .is-open .b-nav-toggle-switch::after {
        right: 20px;
        margin-top: -11px;
        width: 2px;
        height: 23px;
        background: #ac2330;
    }
    .is-open .b-nav-toggle-switch::before {
        transform: rotate(-45deg);
    }
    .is-open .b-nav-toggle-switch::after {
        transform: rotate(45deg);
        content: "";
    }

    .b-nav-toggle-txt {
        display: none;
    }

    .b-nav-body {
        display: block;
        position: absolute;
        top: 56px;
        right: 16px;
        padding-right: 0;
        padding-left: 0;
        width: 340px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s;
        z-index: 9999;
        text-align: left;
        box-shadow: 0 0 10px rgba(0,0,0,.3);
    }

    .b-nav-menu {
        box-shadow: 0 0 10px rgba(0,0,0,.3);
    }

    .b-nav-menu-item {
        display: block;
    }

    .b-nav-menu-link {
        display: block;
        position: relative;
        padding: 11px 32px 11px 16px;
        border-bottom: 1px solid #c6c6c0;
        background: rgba(238,238,238,.96);
        text-decoration: none;
        text-align: left;
    }

    .b-nav-menu-link::before {
        position: absolute;
        top: 50%;
        right: 15px;
        display: block;
        width: 10px;
        height: 10px;
        margin-top: -6px;
        border-top: 2px solid #a30b1a;
        border-right: 2px solid #a30b1a;
        transition: transform .2s;
        transform: rotate(45deg);
        content: "";
    }
}

@media only screen and (max-width:767px) {
    .b-nav {
        padding-left: 16px;
    }

    .b-nav-btn {
        display: block;
    }

    .b-nav-toggle-switch {
        display: block;
        width: 100%;
        padding: 11px 46px;
    }

    .b-nav-body {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .b-nav-menu {
        margin-top: 16px;
    }
}

/* 画像のボーダー削除 .b-noborder */
.announce-point > ul > li.b-noborder img,
.lyt-col-announce-a > li.b-noborder img {
    border:0;
}

.b-title.diff-color-a { color: #a30b1a; }


/* テキストラベル */
.b-color-label-999,
.b-color-label-rd {
    display: inline-block;
    background-color: #999999;
    color: #ffffff;
    padding: 2px 5px 1px;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.2;
}
.b-color-label-rd {
    background-color: #a30b1a;
}

/* 背景色 */
/* 白※section以外で利用 */
.b-bg-wh {background: #ffffff; }

/* 黒 */
.b-bg-bl {
    background: #000000;
    color: #fff;
}
/* 透明※section以外で利用 */
.b-bg-tp {
    background: transparent !important;
}
/* 赤 */
.b-bg-rd {
    background: #a30b1a;
    color: #fff;
}
/* 濃紺 */
.b-bg-db {
    background: #2B2E34;
    color: #fff;
}

/* セクション余白設定(公式CSS踏襲) */
/* ウィンドウ幅1000px以下：左右8pxに上書き */
@media only screen and (max-width: 1000px){
    .main-contents .section-inner {
        padding-right: 8px;
        padding-left: 8px;
    }
}
/* セクションに続く背景色付きセクション */
.main-contents .section+.section[class*=b-bg-] .section-inner {
    padding-top: 56px;
}
@media only screen and (max-width:767px) {
    .main-contents .section+.section[class*=b-bg-] .section-inner {
        padding-top: 40px;
    }
}
/* 背景色付きに続く背景色なしセクション */
.main-contents .section[class*="diff-bg-"]+.section:not([class*="diff-bg-"]):not([class*="b-bg-"]) .section-inner,
.main-contents .section[class*="b-bg"]+.section:not([class*="diff-bg-"]):not([class*="b-bg-"]) .section-inner {
    padding-top: 56px;
}
@media only screen and (max-width:767px) {
    .main-contents .section[class*="diff-bg-"]+.section:not([class*="diff-bg-"]):not([class*="b-bg-"]) .section-inner,
    .main-contents .section[class*="b-bg"]+.section:not([class*="diff-bg-"]):not([class*="b-bg-"]) .section-inner {
        padding-top: 40px;
    }
}

/* 連続する同背景色※白、透明は対応しない */
.main-contents .section.b-bg-bl+.section.b-bg-bl .section-inner,
.main-contents .section.b-bg-rd+.section.b-bg-rd .section-inner,
.main-contents .section.b-bg-db+.section.b-bg-db .section-inner {
    padding-top: 0;
}

/* ページタイトル下のセクションの余白調整 */
.b-section-pd {
    padding-top: 56px !important;
}
@media only screen and (max-width:767px) {
    .b-section-pd {
        padding-top: 40px !important;
    }
}

/* アイコン小 */
.b-icon-small .lyt-col-announce-a > li img{
    max-width: 200px;
    margin: 0 auto 8px;
}

@media only screen and (max-width:768px) {
    .b-icon-small .lyt-col-announce-a > li img{
        max-width: 100%;
    }
}


/* ローカルナビ関連のマージン設定 */
.hdg-a-wrapper + .js-b-fixedmenu .b-nav,
.section + .js-b-fixedmenu .b-nav{
    margin:0;
}
@media only screen and (min-width:768px) {
    .section.diff-margin-b + .js-b-fixedmenu .b-nav:not(.is-fixed){
        margin-top: 10px;
    }
}

/* メインビジュアルのマージン設定 */
/*.breadcrumb-wrapper {
    margin: 16px auto 13px;
}*/
.breadcrumb-wrapper + main > .main-contents > [class*="hero-area"]:first-child,
.breadcrumb-wrapper + main > .main-contents > [class*="lyt-visual-item-"]:first-child,
.breadcrumb-wrapper + main > .main-contents > [class*="lyt-slider-b-wrapper"]:first-child {
    margin-top: 16px;
}

/* リンクアイコン下向き */
.list-link-b > li.b-list-link-down > a::before,
.list-link-b > li ul > li.b-list-link-down > a::before{
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* 濃い背景時の白罫線、白字ボタン */
.b-style-btn-a .btn-b{
    border: #fff 1px solid;
    background: none;
}

.b-style-btn-a .btn-b:hover,.b-style-btn-b .btn-a:hover{
    background: rgba(255,255,255, .1);
}

.b-style-btn-b .btn-a{
    color: #fff !important;
    background: none;
    border: 1px solid #fff;
}

.b-style-btn-b .btn-a::before{
    border-color: #fff;
}

/* ボタン：アイコン画像をデフォルト表示 */
.b-style-btn-c .btn-a::before,
.b-style-btn-c .btn-b::before {
    display: none;
}
.b-style-btn-c .btn-a .icon-a,
.b-style-btn-c .btn-b .icon-a {
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 50%;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

/* ボタン：親要素のhoverと連動 */
.b-btn-hover-sync:hover .btn-a {
    background: #f6cfd3;
}
.b-btn-hover-sync:hover .btn-b {
    background: #d11124;
    border: 1px solid #d11124;
}

/* ボタン：リンクアイコン下向き */
.btn-a.b-btn-link-down::before,
.btn-b.b-btn-link-down::before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -6px;
}

/* タブ切り替えの画像とその領域を削除 */
.tab-a .lists.b-style-tab-a{
    height: auto;
    background: none;
}

@media only screen and (max-width:768px) {
    .tab-a .lists.b-style-tab-a{
        padding-top: 0;
    }
}

@media only screen and (max-width:480px) {
    .tab-a .lists.b-style-tab-a{
        padding-top: 0;
    }
}

/* テーブル：カスタマイズ */
.tbl-b.b-tbl-variable tbody .th,
.tbl-b.b-tbl-variable tbody th {
    width: auto;
}
@media only screen and (max-width:767px) {
    .tbl-b.b-tbl-variable colgroup {
        display: none;
    }
}
.tbl-b.b-tbl-border tbody > tr:first-child th,
.tbl-b.b-tbl-border tbody > tr:first-child td {
    padding: 18px 8px;
    border-top: 1px solid #c6c6c0;
}
@media only screen and (max-width:767px) {
    .tbl-b.b-tbl-border tbody > tr:first-child th {
        padding: 18px 0 0;
    }
    .tbl-b.b-tbl-border tbody > tr:first-child td {
        padding: 6px 0 18px;
        border-top: 0;
    }
}

/* b-lyt-col */
/* pict利用時のpict+見出し(+テキスト）+ボタンのコンテンツのスタイル調整
/*
/*
*/
.lyt-col-announce-a.b-lyt-col > li {
    margin-bottom: 24px;
}
.lyt-col-announce-a.b-lyt-col {
    margin-bottom: -24px;
}
.b-lyt-col .b-title {
    font-size: 20px;
    font-weight: 700;
}

.main-contents .b-lyt-col .b-text + .lyt-btn-b,
.main-contents .b-lyt-col .b-title + .lyt-btn-b {
    margin-top: 16px;
}

/* パネル（白）表示 */
.lyt-col-announce-a.b-lyt-col > .b-bg-wh .b-title {
    margin-left: 20px;
    margin-right: 20px;
}
.lyt-col-announce-a.b-lyt-col > .b-bg-wh .b-text {
    margin-left: 20px;
    margin-right: 20px;
}
.lyt-col-announce-a.b-lyt-col > .b-bg-wh .lyt-btn-b {
    margin-bottom: 4px;
    padding-left: 20px;
    padding-right: 20px;
}
.lyt-col-announce-a.b-lyt-col > .b-bg-wh > *:last-child:not(.lyt-btn-b) {
    margin-bottom: 20px;
}
.lyt-col-announce-a.b-lyt-col.b-lyt-diff-col5 > li:not(.b-bg-wh) {
    width: 18%;
}
.lyt-col-announce-a.b-lyt-col.b-lyt-diff-col3 > li:not(.b-bg-wh) {
    width: 25%;
}
/* (背景色が赤・濃紺の場合) */
.b-bg-rd .lyt-col-announce-a.b-lyt-col > .b-bg-wh,
.b-bg-db .lyt-col-announce-a.b-lyt-col > .b-bg-wh {
    color: #000;
}
.b-bg-rd .lyt-col-announce-a.b-lyt-col > .b-bg-wh .lyt-btn-b a,
.b-bg-db .lyt-col-announce-a.b-lyt-col > .b-bg-wh .lyt-btn-b a{
    display: block;
    font-size: 1.6rem;
    padding: 8px 34px 8px 22px;
    background: #fff;
    color: #a30b1a !important;
    border-color: #a30b1a;
}
.b-bg-rd .lyt-col-announce-a.b-lyt-col > .b-bg-wh .lyt-btn-b a::before,
.b-bg-db .lyt-col-announce-a.b-lyt-col > .b-bg-wh .lyt-btn-b a::before{
    border-color: #a30b1a;
}
.b-bg-rd .lyt-col-announce-a.b-lyt-col > .b-bg-wh .lyt-btn-b a:hover,
.b-bg-db .lyt-col-announce-a.b-lyt-col > .b-bg-wh .lyt-btn-b a:hover{
    background: #f6cfd3;
}
.b-bg-db .hdg-b:not(.b-hdg-b-default),
.b-bg-rd .hdg-b:not(.b-hdg-b-default){
    padding: 0;
    margin: 0 0 70px;
}
.b-bg-db .hdg-b:not(.b-hdg-b-default)::before,
.b-bg-rd .hdg-b:not(.b-hdg-b-default)::before {
    content: none;
}
/* .hdg-bにデフォルトスタイルを適用（下線は白）*/
.b-bg-db .hdg-b.b-hdg-b-default::before,
.b-bg-rd .hdg-b.b-hdg-b-default::before {
    background-color: #fff;
}
.b-bg-rd .lyt-col-announce-a > li:not(.b-bg-wh),
.b-bg-db .lyt-col-announce-a > li:not(.b-bg-wh) {
    width: 23%;
}
.b-bg-rd .lyt-col-announce-a > li.b-noborder:not(.b-bg-wh) p,
.b-bg-db .lyt-col-announce-a > li.b-noborder:not(.b-bg-wh) p{
    font-size: 1.4rem;
}
.b-bg-rd .lyt-btn-b a,
.b-bg-db .lyt-btn-b a{
    display: inline;
    font-size: 1.1rem;
    padding: 5px 22px 5px 12px;
    background: none;
    color: #fff !important;
    border-color: #fff;
}
.b-bg-rd .lyt-btn-b a::before,
.b-bg-db .lyt-btn-b a::before{
    border-color: #fff;
}
/* 下向きリンクアイコンのボタンの場合 */
.b-bg-rd .lyt-btn-b .btn-a.b-btn-link-down::before,
.b-bg-rd .lyt-btn-b .btn-b.b-btn-link-down::before {
    right: 8px;
}
@media only screen and (max-width:768px) {
    .lyt-col-announce-a.b-lyt-col.b-sp-col1 > li {
        -webkit-flex-basis: calc(100% - 16px);
        -ms-flex-preferred-size: calc(100% - 16px);
        flex-basis: calc(100% - 16px);
    }
}

/* CTA Link Follow Type（画面追従ボタン） カスタマイズ */
.js-b-footer-conversion {
    visibility: hidden;
}
#footer-conversion.js-b-footer-conversion {
    visibility: visible;
}
/* CTA ボタン色：グレー */
#footer-conversion li.conversion > a.b-diff-bg-a,
#footer-conversion li.conversion > button.b-diff-bg-a {
    background: #706f67;
}
#footer-conversion li.conversion > a.b-diff-bg-a:active,
#footer-conversion li.conversion > a.b-diff-bg-a:focus,
#footer-conversion li.conversion > a.b-diff-bg-a:hover,
#footer-conversion li.conversion > button.b-diff-bg-a:active,
#footer-conversion li.conversion > button.b-diff-bg-a:focus,
#footer-conversion li.conversion > button.b-diff-bg-a:hover {
    background: #57564f;
}

/* 矢印付きテキスト */
.b-text-flow-a {
    font-weight: bold;
    font-size: 2.8rem;
    text-align: center;
}
.b-text-flow-a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: -50px auto 0;
    pointer-events: none;
    border-style: solid;
    border-width: 100px 240px 0 240px;
    border-color: #a30b1a transparent transparent transparent;
    opacity: 0.1;
}
@media only screen and (max-width:767px) {
    .b-text-flow-a::after {
        margin-top: 16px;
        border-width: 30px 100px 0 100px;
    }
}

/* ラベル付きリスト */
.b-list-hdg-a {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.8rem;
}
.main-contents .b-list-hdg-a + [class*=" list-"],
.main-contents .b-list-hdg-a + [class^=list-] {
    margin-top: 0!important;
}

/* アイコン付きリスト */
.b-list-icon-a.list-a > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-left: 0;
    position: static;
}
.b-list-icon-a.list-a > li::before {
    content: none;
}
.b-list-icon-a-icon {
    -webkit-box-flex: none;
    -ms-flex: none;
    flex: none;
    margin-right: 12px;
}
.b-list-icon-a-text {
    -webkit-box-flex: auto;
    -ms-flex: auto;
    flex: auto;
}

/* 均等分割レイアウト */
.b-layout-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -40px;
    clear: both;
    overflow: hidden;
}

.b-layout-flex > .b-layout-flex-item{
    padding-left: 40px;
    margin: 0 0 12px;
}

.b-layout-flex > .b-layout-flex-item.b-style-flx-flatheight a {
    display: block;
}

.b-layout-flex > .b-layout-flex-item.box-a,
.b-layout-flex > .b-layout-flex-item.box-b{
    margin:0 0 16px 16px;
}


.b-flex-col2 > .b-layout-flex-item{
    width: 50%;
}

.b-layout-flex.b-flex-col2 > .b-layout-flex-item.box-a,
.b-layout-flex.b-flex-col2 > .b-layout-flex-item.box-b{
    width: calc(50% - 28px);
}

.b-layout-flex.b-flex-col2 > .b-layout-flex-item.box-a:nth-child(odd),
.b-layout-flex.b-flex-col2 > .b-layout-flex-item.box-b:nth-child(odd){
    margin:0 0 16px 40px;
}

.b-flex-col3 > .b-layout-flex-item{
width: 33.3333%;
}

.b-layout-flex.b-flex-col3 > .b-layout-flex-item.box-a,
.b-layout-flex.b-flex-col3 > .b-layout-flex-item.box-b{
    width: calc(33.3333% - 24px);
}

.b-layout-flex.b-flex-col3 > .b-layout-flex-item.box-a:nth-child(3n+1),
.b-layout-flex.b-flex-col3 > .b-layout-flex-item.box-b:nth-child(3n+1){
    margin:0 0 16px 40px;
}

.b-flex-col4 > .b-layout-flex-item{
width: 25%;
}

.b-layout-flex.b-flex-col4 > .b-layout-flex-item.box-a,
.b-layout-flex.b-flex-col4 > .b-layout-flex-item.box-b{
    width: calc(25% - 22px);
}

.b-layout-flex.b-flex-col4 > .b-layout-flex-item.box-a:nth-child(4n+1),
.b-layout-flex.b-flex-col4 > .b-layout-flex-item.box-b:nth-child(4n+1){
    margin:0 0 16px 40px;
}

@media only screen and (max-width:767px) {
    .b-layout-flex {
        display: block;
    }
    .b-layout-flex.b-flex-sp-col2 {
        display: flex;
    }
    .b-layout-flex > .b-layout-flex-item.box-a,
    .b-layout-flex > .b-layout-flex-item.box-b{
    padding: 20px;
    }
    .b-layout-flex > .b-layout-flex-item.box-a,
    .b-layout-flex > .b-layout-flex-item.box-b {
    margin: 0 0 16px 40px;
    }
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-a,
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-b,
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-a:nth-child(3n+1),
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-b:nth-child(3n+1),
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-a:nth-child(4n+1),
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-b:nth-child(4n+1) {
    margin: 0 0 16px 16px;
    }
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-a:nth-child(odd),
    .b-layout-flex.b-flex-sp-col2 > .b-layout-flex-item.box-b:nth-child(odd){
    margin:0 0 16px 40px;
    }


    .b-flex-col2 > .b-layout-flex-item,
    .b-flex-col3 > .b-layout-flex-item,
    .b-flex-col4 > .b-layout-flex-item{
        width: 100%;
    }
    .b-flex-col2.b-flex-sp-col2 > .b-layout-flex-item,
    .b-flex-col3.b-flex-sp-col2 > .b-layout-flex-item,
    .b-flex-col4.b-flex-sp-col2 > .b-layout-flex-item{
        width: 50%;
    }
    .b-layout-flex.b-flex-col2 > .b-layout-flex-item.box-a,
    .b-layout-flex.b-flex-col2 > .b-layout-flex-item.box-b,
    .b-layout-flex.b-flex-col3 > .b-layout-flex-item.box-a,
    .b-layout-flex.b-flex-col3 > .b-layout-flex-item.box-b,
    .b-layout-flex.b-flex-col4 > .b-layout-flex-item.box-a,
    .b-layout-flex.b-flex-col4 > .b-layout-flex-item.box-b{
        width: auto;
    }
    .b-layout-flex.b-flex-col2.b-flex-sp-col2 > .b-layout-flex-item.box-a,
    .b-layout-flex.b-flex-col2.b-flex-sp-col2 > .b-layout-flex-item.box-b,
    .b-layout-flex.b-flex-col3.b-flex-sp-col2 > .b-layout-flex-item.box-a,
    .b-layout-flex.b-flex-col3.b-flex-sp-col2 > .b-layout-flex-item.box-b,
    .b-layout-flex.b-flex-col4.b-flex-sp-col2 > .b-layout-flex-item.box-a,
    .b-layout-flex.b-flex-col4.b-flex-sp-col2 > .b-layout-flex-item.box-b{
    width: calc(50% - 28px);
    }
}
/* インデックス（Sub Feature：タイプD） */
/* 左カラムの高さを固定 */
@media only screen and (min-width:1281px) {
    .lyt-idx-b .text-box.diff-type-a.b-diff-ht-a {
        height: 17.12rem;
    }
    :lang(en) .lyt-idx-b .text-box.diff-type-a.b-diff-ht-a {
        height: 17.74rem;
    }
}

/* インデックス（Sub Feature：タイプB＆C＆E） */
/* リンクなし（枠線・リンクアイコンなし） */
.lyt-idx-b.b-diff-panel-a > * {
    padding: 0;
    margin-left: 16px;
    margin-bottom: 16px;
    background: #fff;
}
.lyt-idx-b.diff-col2.b-diff-panel-a > * {
    width: calc(50% - 16px);
}
.lyt-idx-b.diff-col3.b-diff-panel-a > * {
    width: calc(33.333333% - 16px);
}
.lyt-idx-b.diff-col4.b-diff-panel-a > * {
    width: calc(25% - 16px);
}
.lyt-idx-b.diff-lyt-a.b-diff-panel-a > * {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width:767px) {
    .lyt-idx-b.diff-col2.b-diff-panel-a:not(.diff-sp-col2) > *,
    .lyt-idx-b.diff-col3.b-diff-panel-a:not(.diff-sp-col2) > *,
    .lyt-idx-b.diff-col4.b-diff-panel-a:not(.diff-sp-col2) > * {
        width: 100%;
    }
    .lyt-idx-b.diff-sp-col2.b-diff-panel-a > * {
        padding: 0;
        margin-left: 8px;
        margin-bottom: 8px;
        width: calc(50% - 8px);
    }
}
.lyt-idx-b.b-diff-panel-a .text-box {
    padding: 20px;
    background-color: transparent;
}
.lyt-idx-b.b-diff-panel-a .text-box::before {
    content: none;
}
.lyt-idx-b.b-diff-panel-a .text-box a {
    border: none;
}
.lyt-idx-b.b-diff-panel-a .text-box .btn-a,
.lyt-idx-b.b-diff-panel-a .text-box .btn-b {
    border: 1px solid #a30b1a;
}
.lyt-idx-b.b-diff-panel-a .text-box .btn-b:hover {
    border-color: #d11124;
}
.lyt-idx-b.diff-lyt-a.b-diff-panel-a .btn-a,
.lyt-idx-b.diff-lyt-a.b-diff-panel-a .btn-b {
    display: inline-block;
}
/* リンクなし（枠線付き） */
.lyt-idx-b.b-diff-panel-a.b-diff-border > * {
    border: 1px solid #c6c6c0;
}
/* タイプC：要素の縦中央配置 */
.lyt-idx-b.diff-lyt-a.b-diff-panel-a .b-diff-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ピクト入りボタン（白枠・背景透過） */
.b-lyt-btn-a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-bottom: -16px;
}
.b-lyt-btn-a.b-diff-a {
    display: block;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.b-lyt-btn-a > * {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 16px 16px;
    width: calc(25% - 16px);
}
.b-lyt-btn-a.b-diff-a > * {
    width: auto;
}
.b-lyt-btn-a .b-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 308px;
    padding: 8px 24px 8px 8px;
    border: 1px solid #fff;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
}
.b-lyt-btn-a .b-btn:not(.b-btn-disabled)::before {
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    right: 12px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -4px;
}
.b-lyt-btn-a .b-btn:not(.b-btn-disabled):hover {
    background-color: rgba(255,255,255, 0.1);
 }
.b-lyt-btn-a .b-btn .b-visual {
    width: 20.44%;
    max-width: 56px;
}
.b-lyt-btn-a .b-btn .b-text {
    width: 79.56%;
    padding-left: 10px;
    font-weight: 700;
}
@media only screen and (min-width:768px) and (max-width:1280px) {
    .b-lyt-theme-a .b-lyt-btn-a.b-diff-a .b-btn {
        max-width: calc((100vw - 81px) / 4);
    }
}
@media only screen and (max-width:767px) {
    .b-lyt-btn-a {
        display: block;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-bottom: 0;
    }
    .b-lyt-btn-a > * {
        width: auto;
    }
    .b-lyt-btn-a > *:last-child {
        margin-bottom: 0;
    }
    .b-lyt-btn-a .b-btn {
        max-width: 100%;
    }
    .b-lyt-btn-a .b-btn .b-visual {
        width: 56px;
    }
    .b-lyt-btn-a .b-btn .b-text {
        width: calc(100% - 56px);
    }
}

/* 動画（レスポンシブ）*/
.b-movie-a {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
}
.b-movie-a iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Attention Contents（タイプA）：枠付き */
.b-lyt-panel-box-a.lyt-panel-a {
    border: 1px solid #c6c6c0;
}
.b-lyt-panel-box-a.lyt-panel-a .panel-visual img {
    display: block;
}

/* 課題と効果 */
.b-lyt-effect-a {
    margin: 34px 0;
}
.b-lyt-effect-a .b-lyt-effect-labels {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.b-lyt-effect-a .b-lyt-effect-label-a {
    width: calc(50.46% - 80px);
    margin-right: 80px;
    color: #57564f;
}
.b-lyt-effect-a .b-lyt-effect-label-b {
    width: calc(43.54% + 80px);
}
.b-lyt-effect-a .b-lyt-effect-label-a,
.b-lyt-effect-a .b-lyt-effect-label-b {
    font-weight: bold;
    font-size: 2.4rem;
    text-align: center;
}
.b-lyt-effect-a .b-lyt-effect-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
}
.b-lyt-effect-a .b-lyt-effect-row dt {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(50.46% - 80px);
    margin-right: 80px;
    padding: 20px 16px;
    background: #f3f3f3;
    position: relative;
}
.b-lyt-effect-a .b-lyt-effect-row dt::after {
    position: absolute;
    right: -40px;
    top: 50%;
    display: block;
    content: "";
    border-top: 3px solid #a40e1c;
    border-right: 3px solid #a40e1c;
    width: 36px;
    height: 36px;
    margin-top: -3px;
    -webkit-transform: rotate(45deg) skew(10deg, 10deg) translateY(-50%);
    -ms-transform: rotate(45deg) skew(10deg, 10deg) translateY(-50%);
    transform: rotate(45deg) skew(10deg, 10deg) translateY(-50%);
}
.b-lyt-effect-a .b-lyt-effect-row dd {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(43.54% + 80px);
    padding: 20px 16px;
    background: #e2e2e2;
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
    .b-lyt-effect-a .b-lyt-effect-labels {
        display: none;
    }
    .b-lyt-effect-a .b-lyt-effect-label-a,
    .b-lyt-effect-a .b-lyt-effect-label-b {
        display: block;
        width: 100%;
        margin: 0 0 10px;
        font-size: 1.6rem;
    }
    .b-lyt-effect-a .b-lyt-effect-row {
        display: block;
        margin-top: 40px;
    }
    .b-lyt-effect-a .b-lyt-effect-row dt,
    .b-lyt-effect-a .b-lyt-effect-row dd {
        display: block;
        width: 100%;
    }
    .b-lyt-effect-a .b-lyt-effect-row dt {
        margin: 0 0 32px;
    }
    .b-lyt-effect-a .b-lyt-effect-row dt::after {
        right: 50%;
        top: 100%;
        width: 20px;
        height: 20px;
        margin-top: 8px;
        margin-right: -3px;
        transform: rotate(135deg) translateX(-50%);
    }
}

/* 公式コンポネ修正 */
/* 省スペースレイアウト（タイプD） */
.tab-d .tabs-d {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* ユーティリティ以外のクラスはこの行より上に記述してください ----------*/
/* ユーティリティ類 */
/* Flexbox高さ揃え */
.b-style-flx-flatheight{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.b-style-flx-flatheight a {
    width: 100%;
}

/* flex 左寄せ */
.b-style-flx-left{
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-box-pack: flex-start;
    justify-content: flex-start;
}
.lyt-help-a .columns.b-style-flx-left{
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-box-pack: flex-start;
    justify-content: flex-start;
}

/* flex 中央寄せ */
.b-style-flx-center{
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.lyt-help-a .columns.b-style-flx-center{
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

/* flex 右寄せ */
.b-style-flx-right{
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-box-pack: flex-end;
    justify-content: flex-end;
}
.lyt-help-a .columns.b-style-flx-right{
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-box-pack: flex-end;
    justify-content: flex-end;
}

/* フォントカラー*/
.b-color-rd { color: #ac2330; } /* 赤 */
.b-color-w { color:#ffffff; } /* 白 */
.b-color-bl { color:#000; } /* 黒 */

@media only screen and (max-width: 768px){
    .b-color-rd-sp { color:#ac2330; }
    .b-color-bl-sp { color:#000000; }
}

/* font-size */
.b-fs-14 { font-size: 1.4rem; }
.b-fs-16 { font-size: 1.6rem; }
.b-fs-18 { font-size: 1.8rem; }
.b-fs-20 { font-size: 2rem!important; }
.b-fs-24 { font-size: 2.4rem; }
.b-fs-28 { font-size: 2.8rem; }

/* font-weight */
.b-fw-bold {font-weight: 700; }/* 太字 */
.b-fw-normal {font-weight: 400; }/* ノーマル */

/* パディング */
/* bottom */
.b-pb-0 { padding-bottom:0 !important; }
.b-pb-5 { padding-bottom:5px !important; }
.b-pb-10 { padding-bottom:10px !important; }
.b-pb-15 { padding-bottom:15px !important; }
.b-pb-20 { padding-bottom:20px !important; }
.b-pb-25 { padding-bottom:25px !important; }
.b-pb-30 { padding-bottom:30px !important; }
.b-pb-35 { padding-bottom:35px !important; }
.b-pb-40 { padding-bottom:40px !important; }
.b-pb-45 { padding-bottom:45px !important; }
.b-pb-50 { padding-bottom:50px !important; }
.b-pb-55 { padding-bottom:55px !important; }
.b-pb-60 { padding-bottom:60px !important; }
.b-pb-65 { padding-bottom:65px !important; }
.b-pb-70 { padding-bottom:70px !important; }
.b-pb-75 { padding-bottom:75px !important; }
.b-pb-80 { padding-bottom:80px !important; }
/* top */
.b-pt-0 { padding-top:0 !important; }
.b-pt-5 { padding-top:5px !important; }
.b-pt-10 { padding-top:10px !important; }
.b-pt-15 { padding-top:15px !important; }
.b-pt-20 { padding-top:20px !important; }
.b-pt-25 { padding-top:25px !important; }
.b-pt-30 { padding-top:30px !important; }
.b-pt-35 { padding-top:35px !important; }
.b-pt-40 { padding-top:40px !important; }
.b-pt-45 { padding-top:45px !important; }
.b-pt-50 { padding-top:50px !important; }
.b-pt-55 { padding-top:55px !important; }
.b-pt-60 { padding-top:60px !important; }
.b-pt-65 { padding-top:65px !important; }
.b-pt-70 { padding-top:70px !important; }
.b-pt-75 { padding-top:75px !important; }
.b-pt-80 { padding-top:80px !important; }

/* マージン調整 */
/* bottom */
.b-mb-0 { margin-bottom:0px !important; }
.b-mb-5 { margin-bottom:5px !important; }
.b-mb-10 { margin-bottom:10px !important; }
.b-mb-15 { margin-bottom:15px !important; }
.b-mb-20 { margin-bottom:20px !important; }
.b-mb-25 { margin-bottom:25px !important; }
.b-mb-30 { margin-bottom:30px !important; }
.b-mb-35 { margin-bottom:35px !important; }
.b-mb-40 { margin-bottom:40px !important; }
.b-mb-45 { margin-bottom:45px !important; }
.b-mb-50 { margin-bottom:50px !important; }
.b-mb-55 { margin-bottom:55px !important; }
.b-mb-60 { margin-bottom:60px !important; }
.b-mb-65 { margin-bottom:65px !important; }
.b-mb-70 { margin-bottom:70px !important; }
.b-mb-75 { margin-bottom:75px !important; }
.b-mb-80 { margin-bottom:80px !important; }
/* top */
.b-mt-0 { margin-top:0px !important; }
.b-mt-5 { margin-top:5px !important; }
.b-mt-10 { margin-top:10px !important; }
.b-mt-15 { margin-top:15px !important; }
.b-mt-20 { margin-top:20px !important; }
.b-mt-25 { margin-top:25px !important; }
.b-mt-30 { margin-top:30px !important; }
.b-mt-35 { margin-top:35px !important; }
.b-mt-40 { margin-top:40px !important; }
.b-mt-45 { margin-top:45px !important; }
.b-mt-50 { margin-top:50px !important; }
.b-mt-55 { margin-top:55px !important; }
.b-mt-60 { margin-top:60px !important; }
.b-mt-65 { margin-top:65px !important; }
.b-mt-70 { margin-top:70px !important; }
.b-mt-75 { margin-top:75px !important; }
.b-mt-80 { margin-top:80px !important; }

@media only screen and (max-width:767px) {
    /* bottom */
    .b-rw-mb-0 { margin-bottom:0px !important; }
    .b-rw-mb-5 { margin-bottom:5px !important; }
    .b-rw-mb-10 { margin-bottom:10px !important; }
    .b-rw-mb-15 { margin-bottom:15px !important; }
    .b-rw-mb-20 { margin-bottom:20px !important; }
    .b-rw-mb-25 { margin-bottom:25px !important; }
    .b-rw-mb-30 { margin-bottom:30px !important; }
    .b-rw-mb-35 { margin-bottom:35px !important; }
    .b-rw-mb-40 { margin-bottom:40px !important; }
    .b-rw-mb-45 { margin-bottom:45px !important; }
    .b-rw-mb-50 { margin-bottom:50px !important; }
    .b-rw-mb-55 { margin-bottom:55px !important; }
    .b-rw-mb-60 { margin-bottom:60px !important; }
    .b-rw-mb-65 { margin-bottom:65px !important; }
    .b-rw-mb-70 { margin-bottom:70px !important; }
    .b-rw-mb-75 { margin-bottom:75px !important; }
    .b-rw-mb-80 { margin-bottom:80px !important; }

    /* top */
    .b-rw-mt-0 { margin-top:0px !important; }
    .b-rw-mt-5 { margin-top:5px !important; }
    .b-rw-mt-10 { margin-top:10px !important; }
    .b-rw-mt-15 { margin-top:15px !important; }
    .b-rw-mt-20 { margin-top:20px !important; }
    .b-rw-mt-25 { margin-top:25px !important; }
    .b-rw-mt-30 { margin-top:30px !important; }
    .b-rw-mt-35 { margin-top:35px !important; }
    .b-rw-mt-40 { margin-top:40px !important; }
    .b-rw-mt-45 { margin-top:45px !important; }
    .b-rw-mt-50 { margin-top:50px !important; }
    .b-rw-mt-55 { margin-top:55px !important; }
    .b-rw-mt-60 { margin-top:60px !important; }
    .b-rw-mt-65 { margin-top:65px !important; }
    .b-rw-mt-70 { margin-top:70px !important; }
    .b-rw-mt-75 { margin-top:75px !important; }
    .b-rw-mt-80 { margin-top:80px !important; }
}

@media only screen and (min-width:768px) {
    /* bottom */
    .b-pc-mb-0 { margin-bottom:0px !important; }
    .b-pc-mb-5 { margin-bottom:5px !important; }
    .b-pc-mb-10 { margin-bottom:10px !important; }
    .b-pc-mb-15 { margin-bottom:15px !important; }
    .b-pc-mb-20 { margin-bottom:20px !important; }
    .b-pc-mb-25 { margin-bottom:25px !important; }
    .b-pc-mb-30 { margin-bottom:30px !important; }
    .b-pc-mb-35 { margin-bottom:35px !important; }
    .b-pc-mb-40 { margin-bottom:40px !important; }
    .b-pc-mb-45 { margin-bottom:45px !important; }
    .b-pc-mb-50 { margin-bottom:50px !important; }
    .b-pc-mb-55 { margin-bottom:55px !important; }
    .b-pc-mb-60 { margin-bottom:60px !important; }
    .b-pc-mb-65 { margin-bottom:65px !important; }
    .b-pc-mb-70 { margin-bottom:70px !important; }
    .b-pc-mb-75 { margin-bottom:75px !important; }
    .b-pc-mb-80 { margin-bottom:80px !important; }
    /* top */
    .b-pc-mt-0 { margin-top:0px !important; }
    .b-pc-mt-5 { margin-top:5px !important; }
    .b-pc-mt-10 { margin-top:10px !important; }
    .b-pc-mt-15 { margin-top:15px !important; }
    .b-pc-mt-20 { margin-top:20px !important; }
    .b-pc-mt-25 { margin-top:25px !important; }
    .b-pc-mt-30 { margin-top:30px !important; }
    .b-pc-mt-35 { margin-top:35px !important; }
    .b-pc-mt-40 { margin-top:40px !important; }
    .b-pc-mt-45 { margin-top:45px !important; }
    .b-pc-mt-50 { margin-top:50px !important; }
    .b-pc-mt-55 { margin-top:55px !important; }
    .b-pc-mt-60 { margin-top:60px !important; }
    .b-pc-mt-65 { margin-top:65px !important; }
    .b-pc-mt-70 { margin-top:70px !important; }
    .b-pc-mt-75 { margin-top:75px !important; }
    .b-pc-mt-80 { margin-top:80px !important; }
}





/* アンカーリンク
----------------------------------------------------- */
.hero-area-b .content .sub-txt p {
    font-size: 2.8rem!important;
}


/* アンカーリンク
----------------------------------------------------- */
.nav-b {
	background: #dad9d5;
}
@media only screen and (min-width: 1280px) {
	.nav-b ul > li:first-child::after {
		display: block;
		position: absolute;
		content: "";
		top: 50%;
		left: 0;
		width: 1px;
		height: 32px;
		margin-top: -16px;
		background: #b1b1ac;
	}
	.is-fixed .nav-b ul > li:first-child::after {
		display: none;
	}
	.is-fixed .nav-b .nav-b-inner {
		max-width: 1280px;
		margin: 0 auto;
	}
}
@media only screen and (min-width: 1001px) {
	.nav-b ul {
		flex-wrap: nowrap;
	}
	.nav-b ul > li {
		flex-basis: 15%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 15px;
    }
	.js-nav-fixed.diff-style-a.top .nav-b ul > li:nth-child(3) {
		flex-basis: 12%;
    }
	.js-nav-fixed.diff-style-a.top .nav-b. ul > li:nth-child(3) {
		flex-basis: 25%;
    }
	.js-nav-fixed.diff-style-a.top .nav-b ul > li:nth-child(5) {
		flex-basis: 28%;
    }
	.js-nav-fixed.diff-style-a.press .nav-b ul > li:nth-child(2) {
		flex-basis: 20%;
    }
	.js-nav-fixed.diff-style-a.tempo .nav-b ul > li:nth-child(3) {
		flex-basis: 25%;
    }
/*
	.nav-b ul > li:nth-child(2) {
		flex-basis: 45%;
    }
 */
}
@media only screen and (min-width: 768px) {
	.is-fixed .nav-b .nav-b-inner {
		overflow-x: hidden;
	}
	.js-nav-fixed.diff-style-a.top > .nav-b ul a {
		font-size: 1.4rem;
	}
	.js-nav-fixed.diff-style-a.tempo > .nav-b ul a {
		font-size: 1.4rem;
	}
}


/* お問い合わせ
-------------------------------------------------- */
.box-b > .contact-heading {
	text-align: center;
}

.c-lyt-contact-a .c-list-contact-a {
	margin-left: 0;
	width: 100%;
}

.c-lyt-contact-a .c-list-contact-a > li {
	padding: 2vw;
	width: 50%;
}

.c-lyt-contact-a .c-list-contact-a > li:first-child {
	border-right: 1px solid #c6c6c0;
}

.c-lyt-contact-a .c-list-contact-a > li .c-type-form {
	font-size: 2.5rem;
	font-weight: bold;
}

.c-lyt-contact-a .c-list-contact-a > li .c-type-form::before{
	content: "";
	display: inline-block;
	position: relative;
	top: 3px;
	margin-right: 12px;
	width: 30px;
	height: 30px;
	background: url(https://www.fujitsu.com/jp/imagesgig5/icon_form_pen_tcm102-4574794_tcm102-2750236-32.gif) no-repeat;
}

.c-lyt-contact-a .c-list-contact-a > li .notes-a {
	margin-top: 12px !important;
}

.c-lyt-contact-a .c-list-contact-a li.p-type-tel .customer {
	margin-left: -34px;
	text-align: center;
	font-weight: bold;
}

.c-lyt-contact-a .c-list-contact-a li.p-type-tel .p-contact-inner {
	margin-top: 15px;
}

.c-lyt-contact-a .c-list-contact-a li.p-type-tel .p-contact-inner::before {
	background-position: -126px 47px;
}

@media screen and (max-width: 900px){
	.c-lyt-contact-a .c-list-contact-a > li a .p-contact-inner .supple-a {
		display: block;
	}
}

@media screen and (min-width: 769px){
.box-b > .contact-heading .tb-sp {
	display: none;
}
}

@media screen and (max-width: 768px){
	.box-b > .contact-heading {
		margin-bottom: 10px;
	}

	.c-lyt-contact-a .c-list-contact-a > li {
		padding: 0;
		width: inherit;
	}

	.c-lyt-contact-a .c-list-contact-a > li:first-child {
		margin-bottom: 20px;
		border-right: none;
		border-bottom: 1px solid #c6c6c0;
		padding-bottom: 10px;
	}

	.c-lyt-contact-a .c-list-contact-a li.p-type-tel .customer {
		margin-left: 0;
	}

	.c-lyt-contact-a .c-list-contact-a li.p-type-tel .p-contact-inner {
		font-size: 2.8rem;
	}
}
/* お問い合わせ（追従）
-------------------------------------------------- 
@media only screen and (min-width: 768px) {
    [data-script-enabled="true"] #footer-conversion .conv-content{
        width: 740px !important;
    }
    #footer-conversion .conv-content{
        max-width: 740px !important;
        padding: 20px 25px 20px;
    }
    #footer-conversion .conv-content .desc-list{
        margin-bottom:25px !important;
    } 
}*/


/* コンセプト
-------------------------------------------------- */
.section.concept {
	margin-top: 0;
	background: #f0f0f0 !important;
}

.section.concept h3.hdg-b {
	margin-bottom: 40px;
    padding-bottom: 0;

    margin-top: 10px!important;
    font-size: 18px!important;
    color: #a30b1a;
}
@media only screen and (max-width: 767px) {
    .section.concept h3.hdg-b {
        margin-bottom: 20px;
    }
}

.section.concept h3.hdg-b::before {
	display: none;
}

.section.concept .concept-list {
	display: flex;
	justify-content: center;
	margin: 0 0 0 -70px !important;
}

.section.concept .concept-list > li {
	width: 376px;
	padding-left: 70px;
}

.section.concept .concept-list > li .list-a > li::before {
	background: #000;
}

@media only screen and (max-width: 767px) {
	.section.concept .concept-list {
		display: block;
		margin: 0 !important;
	}

	.section.concept .concept-list > li {
		margin: 0 auto;
		padding-left: 0;
		width: 306px;
	}
}


/* 特長
-------------------------------------------------- */
.features .visual {
    text-align: center;
}
.features img {
    max-width: 387px!important;
}
@media only screen and (max-width: 1256px) {
.features img {
    max-width: 100%!important;
}
}







/* 新規追加CSS
-------------------------------------------------- */

/* ------------------ socialページ ------------------ */
/* mv */
.hero-area-b .content .main-txt div {
    padding: 2rem;
}
.hero-area-b .content .main-txt div h1 {
    font-size: 4rem;
}
.hero-area-b .content .main-txt div p {
    font-size: 2rem;
    padding-top: 0.8rem;
}


/* lead */
/*
.lead {
	background: url(/jp/imagesgig5/pic_redesign_tcm102-5340692_tcm102-2750236-32.png)!important;
    background-repeat: no-repeat!important;
    background-position: center 56px!important;
	background-size: 492px auto!important;
}
.lead .section-inner {
    padding: 220px 0 64px;
}
h2.hdg-d.b-fs-24 {
    font-size: 2.4rem;
}
/*
.lead .section-inner p {
    font-size: 1.8rem;
}
*/
/*
@media only screen and (min-width: 1600px) {
.lead .section-inner {
	background-size: 492px auto!important;
	}
}
@media only screen and (max-width: 1280px) {
.lead .section-inner {
    padding:220px 8px 64px;
	}
}
@media only screen and (max-width: 1000px) {
.lead .section-inner {
    padding:220px 16px 64px;
	}
}
@media only screen and (max-width: 492px) {
	.lead {
    background-size: calc(100% - 32px)!important;
    background-position: center 56px!important;
}
}
@media only screen and (max-width: 480px) {
 .lead .section-inner {
   padding:200px 16px 64px;
	}
}
*/


/* youtube */
.social-youtube h3.hdg-b {
    font-size: 2.4rem;
    color: #000:
}
.social-youtube .list-a.diff-col2 {
    width: 100%;
    margin: 0;
}
.social-youtube .list-a.diff-col2 li {
    padding: 0;
}
.social-youtube .list-a.diff-col2 li:nth-child(1) {
    padding-right: 10px;
}
.social-youtube .list-a.diff-col2 li:nth-child(2) {
    padding-left: 10px;
}
.social-youtube .list-a.diff-col2 li:before {
    display: none;
}
.social-youtube .list-a.diff-col2 li iframe {
    width: 100%;
}
@media only screen and (max-width:767px) {
    .social-youtube .list-a.diff-col2 li iframe {
        width: 100%;
    }
    .social-youtube .list-a.diff-col2 li:nth-child(1) {
        padding-right: 0;
    }
    .social-youtube .list-a.diff-col2 li:nth-child(2) {
        padding-left: 0;
    }
}

.social-youtube .lyt-btn-a .btn-a {
    font-size: 1.6rem;
}


/* conference */
.section.conference h3 {
	font-size: 1.5em;
}
.section.conference .list-a .title {
	width: 350px;
}
.section.conference .detail {
	margin: 30px 0 !important;
}

@media only screen and (max-width:1024px) {
	.section.conference .list-a .title {
		width: 260px;
	}
}

@media only screen and (max-width:767px) {
	.section.conference .list-a .title {
		width: 450px;
	}
}

/* btn_navi */
.main-contents .section.btn_navi:last-child .section-inner {
    padding-bottom: 64px;
}
.btn_navi .lyt-btn-a .btn-a {
    font-size: 1.6rem;
}
.btn_navi .lyt-btn-a .btn-a:before {
    display: none;
}
@media only screen and (max-width: 480px) {
.main-contents .section.btn_navi:last-child .section-inner {
    padding-bottom: 48px;
}
}


/* inquiry */
.lyt-contact-a .list-contact-a > li.type-form .contact-inner::before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background-image: url(https://www.fujitsu.com/imgv5/common/icon/sprite2.png);
    background-position: 76px -50px;
}


/* topics */
/*.section.topics .list-news-a .news-content .date {
	flex-basis: 12rem;
}*/
.section.topics .tab-a {
    border-bottom: none;
}
.section.topics .tab-a .tabs-a>.tab-panel {
    padding-bottom: 0;
}
.section.topics .list-news-a .news-content {
	padding: 10px 18px;
}


/* news */
.news .tab-d .lists {
	min-width: 241px;
	max-width: 241px;
}
.news .tab-d .tab-list-d-wrapper {
	min-width: 240px;
}
@media only screen and (max-width: 767px) {
	.news .tab-d .lists {
		min-width: inherit;
		max-width: inherit;
	}
	.news .tab-d .tab-list-d-wrapper {
		min-width: inherit;
	}
}

/* news、topics共通 */
.list-news-a .news-content .date {
    width: 12rem;
}

/* ソーシャルデザインの提供するサービス */
.social-services .box-a {
	display: flex;
}
.social-services .box-a > .img {
	width: 25%;
	margin-right: 40px;
}
.social-services .box-a:first-of-type > .img {
	background: url(/jp/imagesgig5/pic_social_digital_lab_tcm102-5500743_tcm102-2750236-32.jpg) no-repeat right 35% top /cover;
}
.social-services .box-a:nth-of-type(2) > .img {
	background: url(/jp/imagesgig5/pic_sustainable_city_tcm102-5500744_tcm102-2750236-32.jpg) no-repeat center top /cover;
}
.social-services .box-a:nth-of-type(3) > .img {
	background: url(/jp/imagesgig5/pic_edtech_tcm102-5500739_tcm102-2750236-32.jpg) no-repeat center top /cover;
}
.social-services .box-a:nth-of-type(4) > .img {
	background: url(/jp/imagesgig5/pic_digital_tp_tcm102-5500738_tcm102-2750236-32.jpg) no-repeat right 40% top /cover;
}
.social-services .box-a:last-of-type > .img {
	background: url(/jp/imagesgig5/pic_biometrics_tcm102-5500737_tcm102-2750236-32.jpg) no-repeat center top /cover;
}
.social-services .box-a > .text {
	width: 100%;
}
.social-services .box-a h3.hdg-d {
	margin-top: 0;
	color: #000;
}
@media only screen and (max-width: 767px) {
	.social-services .box-a {
		flex-direction: column;
	}
	.social-services .box-a > .img {
		width: 100%;
		height: calc(160vw*100/320);
		margin: 0 0 16px 0;
	}
	.social-services .box-a > .text {
		width: 100%;
	}
}


/* tempo */
.social-tempo .hdg-b::before {
    background: #fff;
}
.social-tempo .panels {
    color: #000;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.tempo-newer {
    /* display: block; */
}
.social-tempo .panel-visual {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media only screen and (min-width: 769px) {
    .social-tempo .lyt-panel-a .panel-content{
    width: 50%;
    padding: 105px 24px 20px;
    line-height: 1.6;
}
}
@media only screen and (max-width: 768px) {
    .social-tempo .lyt-panel-a .panel-content{
        padding: 0 20px 35px;
        line-height: 1.6;
    }
    }

/* conv */
#footer-conversion .conv-content .btn {
    max-width: initial!important;
}

#footer-conversion .conv-space {
    width: 1px!important;
    margin: 0!important;
}
#footer-conversion .conv-content .btn a::before {
    background-position: -106px 3px!important;
}




/* ------------------ tempoページ ------------------ */
.tempo-lead p {
    text-align: center;
}

.tempo-about {
    text-align: center;
}
/*.tempo-about .hdg-b::before {
    background: #fff;
}*/

.tempo-newer .panels {
    display: block;
}
@media only screen and (max-width: 767px) {
    .tempo-newer .panels {
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
    }
}

.tempo-newer .lyt-panel-a .panel-visual {
    width: 96%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
    margin: auto;
}
.tempo-newer .lyt-panel-a .panel-visual img:nth-child(1) { width: 38%; padding-right: 80px; }
.tempo-newer .lyt-panel-a .panel-visual img:nth-child(2) { width: 62%; padding-right: 100px; }

.tempo-newer .lyt-panel-a .panel-content {
    border-top: 1px solid #c6c6c0;
    width: 100%;
    margin-top: 25px;
}
@media only screen and (max-width: 767px) {
    .tempo-newer .lyt-panel-a .panel-visual {
        width: 100%;
        display:block;
        padding: 0 24px;
    }
    .tempo-newer .lyt-panel-a .panel-visual img:nth-child(1) { width: 100%; padding-right: 0; }
    .tempo-newer .lyt-panel-a .panel-visual img:nth-child(2) { width: 100%; padding-right: 0; margin-top: 24px; }

    .tempo-newer .lyt-panel-a .panel-content {  width: 100%; }
}

.tempo-newer table th:nth-child(1) { width: 20%; }
.tempo-newer table th:nth-child(2) { width: 30%; }
.tempo-newer table th:nth-child(3) { width: 50%; }
@media only screen and (max-width: 767px) {
    .tempo-newer table th:nth-child(1) { width: 100%; }
    .tempo-newer table th:nth-child(2) { width: 100%; }
    .tempo-newer table th:nth-child(3) { width: 100%; }
}

.main-contents .tempo-inquiry .section-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 56px 0 64px;
}
@media only screen and (max-width: 767px){
    .main-contents .social-inquiry .section-inner,
    .main-contents .tempo-inquiry .section-inner {
        max-width: initial;
        padding: 56px 16px 104px;
        margin-bottom: 50px;
    }
}

.tempo-inquiry .c-lyt-contact-a .c-list-contact-a > li {
    padding: 2vw;
    width: 100%;
}
.tempo-inquiry .c-lyt-contact-a .c-list-contact-a > li:first-child {
    border: none;
}

/* online */
.online .panels {
    color: #000;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    border: 1px solid #b1b1ac;
}
.online .panel-visual {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    width: 40%;
}
.online .lyt-panel-a .panel-content {
    width: 60%;
    padding: 0 24px 0;
    line-height: 1.6;
    display: flex;
    align-self: center;
    flex-wrap: wrap;
}
.online .lyt-panel-a .panel-content p {
    width: 100%;
    margin-bottom: 0;
}
.online .lyt-panel-a .panel-content p strong {
    font-size: 2.4rem;
}
@media only screen and (min-width: 769px) {
    .online .panel-visual {
        width: 50%;
}
    .online .lyt-panel-a .panel-content{
    width: 50%;
    padding: 0 24px 0;
    line-height: 1.6;
}
    .online .lyt-panel-a .panel-content p {
    margin-bottom: 8px;
}
    .online .lyt-panel-a .panel-content p strong {
    font-size: 2rem;
}
}
@media only screen and (max-width: 768px) {
/*    .online .lyt-panel-a .panels {
    -webkit-flex-direction: row;
    flex-direction: row;
}*/
.online .panel-visual {
        width: 100%;
}
    .online .lyt-panel-a .panel-content{
    width: 100%;
    padding: 35px 20px 35px;
}
    .online .lyt-panel-a .panel-content p {
    margin-bottom: 16px;
}
    .online .lyt-panel-a .panel-content p strong {
    font-size: 2rem;
}
}
@media only screen and (max-width: 480px) {
    .online .lyt-panel-a .panels {
    -webkit-flex-direction: column;
    flex-direction: column;
}
    .online .panel-visual {
        width: 100%;
    }
    .online .lyt-panel-a .panel-content{
        padding: 20px 20px 35px;
        line-height: 1.6;
        width: 100%;
    }
    .online .lyt-panel-a .panel-content p strong {
    font-size: 2rem;
}
}



/* 汎用 */
@media only screen and (max-width: 767px){
    .hide-sp {
        display: none!important;
    }
}
@media only screen and (min-width: 768px) {
    .hide-pc {
        display: none!important;
    }
}



.section-read-w80p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}
@media only screen and (max-width: 767px) {
    .section-read-w80p {
        max-width: 100%;
    }
}



@media only screen and (max-width:767px) {
    /* bottom */
    .b-rw-pb-0 { padding-bottom:0px !important; }
    .b-rw-pb-5 { padding-bottom:5px !important; }
    .b-rw-pb-10 { padding-bottom:10px !important; }
    .b-rw-pb-15 { padding-bottom:15px !important; }
    .b-rw-pb-20 { padding-bottom:20px !important; }
    .b-rw-pb-25 { padding-bottom:25px !important; }
    .b-rw-pb-30 { padding-bottom:30px !important; }
    .b-rw-pb-35 { padding-bottom:35px !important; }
    .b-rw-pb-40 { padding-bottom:40px !important; }
    .b-rw-pb-45 { padding-bottom:45px !important; }
    .b-rw-pb-50 { padding-bottom:50px !important; }
    .b-rw-pb-55 { padding-bottom:55px !important; }
    .b-rw-pb-60 { padding-bottom:60px !important; }
    .b-rw-pb-65 { padding-bottom:65px !important; }
    .b-rw-pb-70 { padding-bottom:70px !important; }
    .b-rw-pb-75 { padding-bottom:75px !important; }
    .b-rw-pb-80 { padding-bottom:80px !important; }

    /* top */
    .b-rw-pt-0 { padding-top:0px !important; }
    .b-rw-pt-5 { padding-top:5px !important; }
    .b-rw-pt-10 { padding-top:10px !important; }
    .b-rw-pt-15 { padding-top:15px !important; }
    .b-rw-pt-20 { padding-top:20px !important; }
    .b-rw-pt-25 { padding-top:25px !important; }
    .b-rw-pt-30 { padding-top:30px !important; }
    .b-rw-pt-35 { padding-top:35px !important; }
    .b-rw-pt-40 { padding-top:40px !important; }
    .b-rw-pt-45 { padding-top:45px !important; }
    .b-rw-pt-50 { padding-top:50px !important; }
    .b-rw-pt-55 { padding-top:55px !important; }
    .b-rw-pt-60 { padding-top:60px !important; }
    .b-rw-pt-65 { padding-top:65px !important; }
    .b-rw-pt-70 { padding-top:70px !important; }
    .b-rw-pt-75 { padding-top:75px !important; }
    .b-rw-pt-80 { padding-top:80px !important; }
}

@media only screen and (min-width:768px) {
    /* bottom */
    .b-pc-pb-0 { padding-bottom:0px !important; }
    .b-pc-pb-5 { padding-bottom:5px !important; }
    .b-pc-pb-10 { padding-bottom:10px !important; }
    .b-pc-pb-15 { padding-bottom:15px !important; }
    .b-pc-pb-20 { padding-bottom:20px !important; }
    .b-pc-pb-25 { padding-bottom:25px !important; }
    .b-pc-pb-30 { padding-bottom:30px !important; }
    .b-pc-pb-35 { padding-bottom:35px !important; }
    .b-pc-pb-40 { padding-bottom:40px !important; }
    .b-pc-pb-45 { padding-bottom:45px !important; }
    .b-pc-pb-50 { padding-bottom:50px !important; }
    .b-pc-pb-55 { padding-bottom:55px !important; }
    .b-pc-pb-60 { padding-bottom:60px !important; }
    .b-pc-pb-65 { padding-bottom:65px !important; }
    .b-pc-pb-70 { padding-bottom:70px !important; }
    .b-pc-pb-75 { padding-bottom:75px !important; }
    .b-pc-pb-80 { padding-bottom:80px !important; }
    /* top */
    .b-pc-pt-0 { padding-top:0px !important; }
    .b-pc-pt-5 { padding-top:5px !important; }
    .b-pc-pt-10 { padding-top:10px !important; }
    .b-pc-pt-15 { padding-top:15px !important; }
    .b-pc-pt-20 { padding-top:20px !important; }
    .b-pc-pt-25 { padding-top:25px !important; }
    .b-pc-pt-30 { padding-top:30px !important; }
    .b-pc-pt-35 { padding-top:35px !important; }
    .b-pc-pt-40 { padding-top:40px !important; }
    .b-pc-pt-45 { padding-top:45px !important; }
    .b-pc-pt-50 { padding-top:50px !important; }
    .b-pc-pt-55 { padding-top:55px !important; }
    .b-pc-pt-60 { padding-top:60px !important; }
    .b-pc-pt-65 { padding-top:65px !important; }
    .b-pc-pt-70 { padding-top:70px !important; }
    .b-pc-pt-75 { padding-top:75px !important; }
    .b-pc-pt-80 { padding-top:80px !important; }
}



.c-lyt-contact-a .c-list-contact-a li.p-type-tel .p-contact-inner::before {
    display: block;
    content: "";
    position: absolute;
    background: url(https://www.fujitsu.com/imgv5/common/icon/sprite2.png) no-repeat -56px -25px;
    width: 20px;
    height: 20px;
    top: 13px;
    left: 0;
}





/* この行より下へのクラス追加は禁止 --------------------------*/
