@charset "UTF-8";

/*====================================================================================
 Base
====================================================================================*/
body {
    background-color: #fff;
    color: #666666;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: .056em;
    line-height: 1.75;
    width: 100%;
    word-break: break-word;
    font-family: "Noto Sans Jp", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body.is-fix {
    position: fixed;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}
@media (min-width: 769px) { body { position: static; } }
@media (min-width: 1025px) {
    body.is-fix {
        position: static;
    }
}
a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
    -webkit-transition: opacity .1s ease-in-out 0s;
    transition: opacity .1s ease-in-out 0s;
    color: #666666;
    text-decoration: underline;
}
a:link {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
li img, li a, li a img {
    vertical-align: bottom;
}

/* font-family
-------------------------------------------------- */
@font-face {
    font-family: 'Noto Sans Jp';
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/NotoSansJP-Light.woff2) format('woff2'), url(../fonts/NotoSansJP-Light.woff) format('woff'), url(../fonts/NotoSansJP-Light.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Sans Jp';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/NotoSansJP-Regular.woff2) format("woff2"), url(../fonts/NotoSansJP-Regular.woff) format("woff"), url(../fonts/NotoSansJP-Regular.otf) format("opentype");
}
@font-face {
    font-family: 'Noto Sans Jp';
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/NotoSansJP-Bold.woff2) format("woff2"), url(../fonts/NotoSansJP-Bold.woff) format("woff"), url(../fonts/NotoSansJP-Bold.otf) format("opentype");
}

/* wrap
-------------------------------------------------- */
.wrap {
    position: relative;
    overflow: hidden;
}
@media (min-width: 769px) { .wrap { padding-top: 29px; } }

/* l-header
-------------------------------------------------- */
.l-header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
}
.header--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.logo {
    height: 100%;
}
.logo p {
    line-height: 1;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.logo svg {
    width: 203px;
    height: 24px;
}
.logo--lnk {
    font-size: 2.4rem;
    font-weight: 700;
    display: block;
    height: 55%;
}
.telHeader {
    text-align: right;
    line-height: 1;
    margin-top: 30px;
}
[class*="telHeader--"] {
    display: block;
}
.telHeader--num {
    font-weight: 700;
    font-size: 1.8rem;
    color: #096EBD;
}
.telHeader--num .fa {
    font-size: 1.4rem;
}
.telHeader--txt {
    margin-top: 3px;
    font-size: 1.1rem;
}
@media (min-width: 768px) {
    .telHeader--lnk {
        pointer-events: none;
    }
    .telHeader--num {
        font-size: 2.3rem;
    }
    .telHeader--num .fa {
        font-size: 2.1rem;
    }
}
@media (min-width: 1025px) {
    .l-header {
        height: 113px;
        margin: 0 auto;
        -webkit-transition: height 0.3s;
        transition: height 0.3s;
    }
    .gNav--sub {
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }
    .logo {
        position: static;
        height: 113px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: auto;
        left: auto;
        margin-left: 0;
        margin-right: auto;
        -webkit-transition: height 0.3s;
        transition: height 0.3s;
    }
    .logo svg {
        margin-top: 29px;
        width: 173px;
        height: 18px;
    }
    .telHeader {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .l-header.is-fixed {
        height: 110px;
    }
    .l-header.is-fixed .gNav--sub {
        opacity: 0;
        height: 0;
    }
    .l-header.is-fixed .logo {
        height: 100%;
    }
    .l-header.is-fixed .logo svg {
        margin-top: 25px;
    }
    .l-header.is-fixed .telHeader {
        margin-bottom: 20px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .l-header {
        height: 90px;
    }
    .logo svg {
        margin-top: 30px;
    }
}
@media (min-width: 1200px) {
    .logo svg {
        margin-top: 20px;
        width: 263px;
        height: 24px;
    }
}

/* l-nav
-------------------------------------------------- */
.l-nav {
    position: fixed;
    right: 0;
    top: 60px;
    width: 100%;
    bottom: 0;
    visibility: hidden;
}
.l-nav.pc {
    display: none;
}
@media (min-width: 1025px) {
    .l-nav {
        position: static;
        height: 100%;
    }
    .l-nav.pc {
        display: block;
    }
    .l-nav.sp {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .l-nav {
        top: 90px;
    }
}

/* globalNav
-------------------------------------------------- */
.globalNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.globalNav--content {
    -webkit-perspective: 500px;
    perspective: 500px;
    width: 100%;
}
.globalNav--bg {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    cursor: pointer;
}
/* gNav sNav */
.gNav--lnk--item,
.gNav--txt--item,
.sNav--lnk--item,
.sNav--txt--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    position: relative;
    padding-left: 10px;
}
.gNav--txt--item::before,
.sNav--txt--item::before {
    content: "\e61a";
    font-family: 'themify';
    font-size: 1.1rem;
    height: 45px;
    width: 45px;
    background-color: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.gNav--txt--item.is-active::before,
.sNav--txt--item.is-active::before {
    content: "\e622";
}
/* gNav */
.gNav {
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
}   
.flgSp .gNav,
.flgTab .gNav {
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}
.gNav--item {
    line-height: 1;
    border-top: 1px solid #e5e6e6;
}
.gNav--item:last-child {
    margin-right: 0;
}
.gNav--lnk--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    text-decoration: none;
}
.gNav--sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 15px;
}
.gNav--item--sub + .gNav--item--sub {
    margin-left: 20px;
}
.gNav--lnk--item-sub {
    font-size: 1.2rem;
}
@media (min-width: 375px) {
    .gNav {
        -webkit-transform-origin: right;
        transform-origin: right;
    }
}
@media (min-width: 375px) and (max-width: 575px) {
    .globalNav--content {
        width: calc(100% - 30px);
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .globalNav--content {
        width: calc(100% - 200px);
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .globalNav--content {
        width: 60%;
    }
}
@media (min-width: 1025px) {
    .globalNav {
        position: static;
        height: 100%;
    }
    .globalNav--content {
        -webkit-perspective: none;
        perspective: none;
    }
    .globalNav--bg {
        display: none;
    }
    .gNav {
        background-color: #fff;
        opacity: 1;
        visibility: visible;
        height: 100%;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 0;
        -webkit-transform: none !important;
        transform: none !important;
    }
    .gNav--sub,
    .gNav--main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
    .gNav--sub {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        margin-top: 0;
        margin-bottom: 15px;
    }
    .gNav--item {
        position: relative;
        margin-right: 10px;
        font-size: 1.2rem;
        padding: 0;
        height: auto;
        display: block;
        border: none;
    }
    .gNav--lnk--item,
    .gNav--txt--item {
        padding: 0 0 20px 0;
        position: relative;
        height: auto;
        -webkit-transition: color .2s;
        transition: color .2s;
        color: #333333;
    }
    .gNav--item.is-active > .gNav--lnk--item,
    .gNav--item.is-active > .gNav--txt--item {
        color: #08408A;
    }
    .gNav--txt--item {
        cursor: pointer;
    }
    .gNav--txt--item::before {
        display: none;
    }
    .h--contact-btn .gNav--lnk--item {
        background-color: #2883EB;
        color: #fff;
        padding: 14px 10px;
        border: solid 2px #2883EB;
    }
    .h--contact-btn .gNav--lnk--item:hover {
        background-color: #fff;
        color: #2883EB;
    }
}
@media (min-width: 1300px) {
    .gNav--item {
        margin-right: 15px;
        font-size: 1.4rem;
    }
}

/* sNav */
.subNav,
.subNav--child {
    display: none;
}
.subNav {
    background-color: #f5f5f5;
}
.subNav--child {
    background-color: #dedede;
}
.sNav--item {
    border-top: 1px solid #e5e6e6;
}
.sNav--txt--item,
.sNav--lnk--item {
    position: relative;
    padding-left: 30px;
}
.sNav--item--child .sNav--lnk--item {
    padding-left: 45px;
}
.sNav--txt--item::before {
    background-color: #dedede;
}
.sNav--item--child:not(:first-child) {
    border-top: 1px solid #fff;
}
@media (min-width: 1025px) {
    .subNav,
    .subNav--child {
        width: 300px;
        position: absolute;
        left: calc( 50% - 150px);
    }
    .subNav {
        top: 10px;
        -webkit-transition: top 0.3s;
        transition: top 0.3s;
        background-color: transparent;
    }
    .sNav:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -10px;
        border: 10px solid transparent;
        border-bottom: 10px solid #1e1e1e;
    }
    .l-header.is-fixed .subNav {
        top: 10px;
    }
    .subNav--child {
        background-color: #1896ca;
        top: 64px;
    }
    .sNav {
        padding-top: 20px;
    }
    .sNav,
    .sNav--child {
        width: 100%;
        margin: 0 auto;
    }
    .sNav * {
        color: #fff;
    }
    .sNav--item,
    .sNav--item--child {
        border: none !important;
    }
    .sNav--txt--item,
    .sNav--lnk--item {
        padding-bottom: 23px;
        display: block;
        height: auto;
        padding-top: 20px;
        border-bottom: solid 1px #6e6e6e;
        background-color: #1e1e1e;
    }
    .sNav--txt--item:hover,
    .sNav--lnk--item:hover {
        border-bottom: solid 1px #919191;
        background-color: #555555;
    }
    .sNav li:last-child .sNav--txt--item,
    .sNav li:last-child .sNav--lnk--item {
        border-bottom: none;
    }
    .sNav--item--child .sNav--lnk--item {
        padding-left: 0;
    }
    .sNav--txt--item::before {
        display: none;
    }
}

/* footer
-------------------------------------------------- */
.footer {
    border-top: solid 1px #F2F2F2;
}
.footer .common-contactWrap {
    margin-bottom: 0;
    background-color: #F2F2F2;
    padding: 30px 0;
}
.footer .commonLink {
    border-bottom: solid 1px #F2F2F2;
    padding: 12px 0;
}
.footer .footer-content {
    display: none;
}
.footer .common-contactWrap .common-contact-list .btn-common-contact-tel {
    border: solid 3px #ffffff;
}
.footer .footer-group-bnr {
    text-align: center;
    padding: 20px 0 20px;
}
.footer .footer-group-bnr li { margin: 10px 10px; }
.footer .footer-group-bnr a img {
    width: 50%;
    border: 1px solid #ccc;
}
.footer .footer-group-bnr2 {
    padding: 20px 0 30px;
}
.footer .footer-group-bnr2 li { margin: 10px 10px; }
.footer .footer-Copyright p{
  width: 96%;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
    .footer {
        display: block;
    }
    .footer .common-contactWrap {
        padding: 60px 0;
    }
    .footer .common-contactWrap .common-contact-list .btn-common-contact-tel {
        border: solid 3px #F2F2F2;
        background-color: #F2F2F2;
    }
    .footer .l-container {
        max-width: none;
    }
    .footer .footer-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer .nav--footer,
    .footer .mark--footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer .nav--footer li {
        width: 33.3333%;
        padding: 15px 0;
    }
    .footer .nav--footer li:nth-child(2) {
        width: 66.6666%;
    }
    .footer .nav--footer li,
    .footer .nav--footer li a {
        font-size: 1.3rem;
        font-weight: 300;
    }
    .footer .nav--footer li a:hover {
        text-decoration: underline;
    }
    .footer .mark--footer {
        margin-bottom: 15px;
    }
    .footer .footer-group-bnr {
        padding: 20px 0 40px;
    }
    .footer .footer-group-bnr li { margin: 0 10px; }
    .footer .footer-group-bnr a:hover {
        opacity: 0.6;
    }
    .footer .footer-group-bnr a img {
        width: auto;
    }
    .footer .footer-Copyright p{
      width: 100%;
      font-size: 1.1rem;
    }
}
@media (min-width: 1000px) {
    .footer .mark--footer {
        width: 11%;
        min-width: 205px;
        margin-bottom: 0;
    }
    .footer .nav--footer {
        width: 89%;
        max-width: calc( 100% - 205px );
    }
    .footer .nav--footer li,
    .footer .nav--footer li:first-child,
    .footer .nav--footer li:nth-child(2) {
        width: auto;
        padding: 15px;
    }
}
@media (min-width: 1540px) {
    .footer .nav--footer li,
    .footer .nav--footer li:first-child,
    .footer .nav--footer li:nth-child(2) {
        width: auto;
        padding: 30px 1%;
    }
    .footer .mark--footer li {
        padding: 15px 1%;
    }
}

/* l-mark
-------------------------------------------------- */
.l-mark {
    position: absolute;
    width: 49px;
    height: 60px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    font-size: 24px;
    text-decoration: none;
    vertical-align: middle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    right: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (min-width: 1025px) {
    .l-mark {
        display: none;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .l-mark {
        height: 60px;
        top: 30px;
    }
}

/* mark
-------------------------------------------------- */
.mark {
    margin-top: 3px;
}
.mark > * {
    position: relative;
    text-decoration: none;
}
.mark > i {
    will-change: transform;
}
.markMenu {
    width: 100%;
    height: 1.8rem;
    position: relative;
}
.markMenu .markMenu--middle {
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
    opacity: 1;
}
.markMenu--middle,
.markMenu--top,
.markMenu--bottom {
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
    transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.mark.is-active .markMenu .markMenu--middle,
.mark.is-active .markMenu .markMenu--top,
.mark.is-active .markMenu .markMenu--bottom {
    background-color: #3c3c3c;
}
.mark.is-active .markMenu .markMenu--middle {
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
    opacity: 0;
}
.mark.is-active .markMenu .markMenu--top {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}
.mark.is-active .markMenu .markMenu--bottom {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}
.markMenu--middle,
.markMenu--top,
.markMenu--bottom {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    width: 24px;
    height: 2px;
    background-color: #111;
}
.markMenu--middle {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: -2px;
}
.markMenu--top {
    margin-top: -9px;
}
.markMenu--bottom {
    margin-top: 5px;
}
.l-mark.is-fixed .markMenu--middle,
.l-mark.is-fixed .markMenu--top,
.l-mark.is-fixed .markMenu--bottom {
    background-color: #111;
}

/* l-main
-------------------------------------------------- */
.l-main {
    margin-top: 60px;
}
@media (min-width: 1025px) {
    .l-main {
        margin-top: 86px;
    }
}

/* l-container
-------------------------------------------------- */
.l-container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1240px;
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
}
.l-container--fluid {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    position: relative;
}
.l-container + .l-container {
    margin-top: 60px;
}
@media (min-width: 768px) {
    .l-container + .l-container {
        margin-top: 90px;
    }
}

/* body.is-fix
-------------------------------------------------- */
body.is-fix .l-nav {
    visibility: visible;
}
body.is-fix .globalNav--bg {
    opacity: 1;
}
body.is-fix .gNav {
    opacity: 1;
    visibility: visible;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 1025px) {
    body.is-fix .l-main {
        margin-top: 0;
    }
    body.is-fix .l-header {
        position: fixed;
    }
    body.is-fix .gNav {
        overflow: visible;
    }
}

/* navnone
-------------------------------------------------- */
#navnone .logo svg {
    margin-top: 0;
}
@media (min-width: 1025px) {
    #navnone .l-header,
    #navnone .logo {
        height: 81px;
    }

}

/*====================================================================================
 Object
====================================================================================*/
/* Wrap
-------------------------------------------------- */
[class*="Wrap"] {
    margin-bottom: 40px;
}
@media (min-width: 1025px) {
    [class*="Wrap"] {
        margin-bottom: 60px;
    }
}

/* Table
-------------------------------------------------- */
/*tbl-base*/
.tbl-base table {
    width: 100%;
}
.tbl-base table,
.tbl-base th,
.tbl-base td {
    border: 1px solid #bfbfbf;
}
.tbl-base.tbl-cloudec table,
.tbl-base.tbl-cloudec th,
.tbl-base.tbl-cloudec td {
    border: 1px solid #D5D5D5;
}
.tbl-base.tbl-cloudec table {
    border-left: 4px solid #C6951A;
}
.tbl-base th,
.tbl-base td {
    padding: 15px;
}
.tbl-base th {
    background-color: #147AC8;
    color: #ffffff;
    vertical-align: middle;
    font-weight: 900;
}
.tbl-base.tbl-cloudec th {
    background-color: #ECEBE5;
    color: #707070;
}
@media (min-width: 768px) {
    .tbl-base table th {
        padding: 15px;
    }
    .tbl-base td {
        padding: 20px;
    }
    .tbl-base th {
        padding-left: 30px;
    }
}

.tbl-base.tbl-event th {
    color: #666666;
    background-color: #e0e0e0;
    width: 25%;
}

.tbl-base.tbl-cloudec2 table {
    border-left: 4px solid #553991;
}
.tbl-base.tbl-cloudec2 th {
    background-color: #8874b2;
    border: none;
}
.tbl-base.tbl-cloudec2 th,
.tbl-base.tbl-cloudec2 td {
    display: block;
    width: 100%;
    padding: 10px;
}
@media (min-width: 768px) {
    .tbl-base.tbl-cloudec2 th {
        background-color: #8874b2;
        width: 36%;
        border-bottom: 1px solid #bfbfbf;
    }
    .tbl-base.tbl-cloudec2 td {
        width: 64%;
    }
    .tbl-base.tbl-cloudec2 th,
    .tbl-base.tbl-cloudec2 td {
        display: table-cell;
        padding: 15px;
    }
}

/* Title
-------------------------------------------------- */
.ttl-pageHeader {
    position: relative;
    z-index: 1;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 0!important;
}
.ttl-pageHeader--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 900;
    margin-bottom: 0!important;
}
[class*="ttl-"] {
    color: #333333;
    margin-bottom: 30px;
}
.ttl-center {
    text-align: center;
}
@media (min-width: 768px) {
}

/* Headings
-------------------------------------------------- */
[class*="hdg-0"] {
    font-size: 2.8rem;
}
[class*="hdg-1"] {
    font-size: 2.4rem;
}
[class*="hdg-2"] {
    font-size: 2.0rem;
}
[class*="hdg-3"] {
    font-size: 1.6rem;
}
[class*="hdg-4"] {
    font-size: 1.4rem;
}
@media (min-width: 768px) {
    [class*="hdg-0"] {
        font-size: 3.2rem;
    }
    [class*="hdg-1"] {
        font-size: 2.8rem;
    }
    [class*="hdg-2"] {
        font-size: 2.4rem;
    }
    [class*="hdg-3"] {
        font-size: 2.0rem;
    }
    [class*="hdg-4"] {
        font-size: 1.8rem;
    }
}

/* Button
-------------------------------------------------- */
.wrap-btn {
    margin-top: 30px;
    margin-bottom: 0;
    width: 100%;
}
[class*="btn-"] {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 269px;
    max-width: 100%;
    height: 44px;
    margin: 0 auto;
    border: 0;
    text-align: center;
    line-height: 1;
    -webkit-user-select: none;
    background-color: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
}
@media (min-width: 768px) {
    [class*="btn-"] {
        width: 310px;
        height: 47px;
    }
}
/* btn-electric */
.btn-electric, .btn-electric--blue, .btn-electric--blue2, .btn-electric--white, .btn-electric--brown, .btn-electric--purple, .btn-electric--red {
    padding: 10px;
    border-width: 2px;
    border-style: solid;
    border-color: #000;
    background-color: #fff;
    color: #000;
    -webkit-transition: background .3s;
    transition: background .3s;
}
.btn-electric:hover, .btn-electric--blue:hover, .btn-electric--blue2:hover, .btn-electric--white:hover, .btn-electric--brown:hover, .btn-electric--purple, .btn-electric--red:hover {
    background-color: #000;
    color: #fff;
}
/* btn-electric--blue */
.btn-electric--blue {
    border-color: #08408A;
    background-color: #08408A;
    color: #fff;
}
.btn-electric--blue:hover {
    border-color: #08408A;
    background-color: #fff;
    color: #08408A;
}
/* btn-electric--blue2 */
.btn-electric--blue2 {
    border-color: #4849b7;
    background-color: #4849b7;
    color: #fff;
}
.btn-electric--blue2:hover {
    border-color: #4849b7;
    background-color: #fff;
    color: #4849b7;
}
/* btn-electric--white */
.btn-electric--white {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #147AC8;
}
.btn-electric--white:hover {
    border-color: #ffffff;
    background-color: #147AC8;
    color: #ffffff;
}
/* btn-electric--brown */
.btn-electric--brown {
    border-color: #5D5121;
    background-color: #5D5121;
    color: #ffffff;
}
.btn-electric--brown:hover {
    border-color: #5D5121;
    background-color: #ffffff;
    color: #5D5121;
}
/* btn-electric--purple */
.btn-electric--purple {
    border-color: #553991;
    background-color: #553991;
    color: #ffffff;
}
.btn-electric--purple:hover {
    border-color: #553991;
    background-color: #ffffff;
    color: #553991;
}
/* btn-electric--red */
.btn-electric--red {
    border-color: #ba3e00;
    background-color: #ba3e00;
    color: #ffffff;
}
.btn-electric--red:hover {
    border-color: #ba3e00;
    background-color: #ffffff;
    color: #ba3e00;
}

/* Button(NEW)
-------------------------------------------------- */
.newbtn-electric-dimensional--orange {
    display: block;
    position: relative;
    height: 50px;
    width: 100%;
    max-width: 400px;
    color: #ffffff;
    font-size: 1.6rem;
    background: linear-gradient(270deg, #fa6e30 0%, #ef380e 100%);
    border-radius: 40px;
    transition: all 0.2s ease;
}
.newbtn-electric-dimensional--orange:hover { background: transparent;  }
.newbtn-electric-dimensional--orange.pushdown:before {
    content:"";
    position: absolute;
    z-index: -1;
    transform: translate3d(0,0,0);
    top: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: #971111;
}
.newbtn-electric-dimensional--orange .txtcontent {
    display: block;
    position: relative;
    border-radius: 40px;
    height: 80px;
    padding: 16px 0;
    transition: all 0.2s ease;
}
.newbtn-electric-dimensional--orange.pushdown:hover .txtcontent {
    transform: translateY(5px);
    background: linear-gradient(270deg, #fa6e30 0%, #ef380e 100%);
}
@media (min-width: 768px) {
    .newbtn-electric-dimensional--orange {
        height: 80px;
        font-size: 2.2rem;
    }
    .newbtn-electric-dimensional--orange .txtcontent {
        height: 80px;
        padding: 28px 0;
    }
}


.newbtn-electric--orange {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 50px;
    color: #ffffff;
    background: linear-gradient(270deg, #fa6e30 0%, #ef380e 100%);
    border-radius: 35px;
    transition: all 0.2s ease;
    border: solid 2px #ef380e;
}
.newbtn-electric--orange:hover {
    color: #ef380e;
    background: #ffffff;
}
.newbtn-electric--yellow {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 50px;
    color: #ffffff;
    background: linear-gradient(270deg, #ffc431 0%, #c6951a 100%);
    border-radius: 35px;
    transition: all 0.2s ease;
    border: solid 2px #c6951a;
}
.newbtn-electric--yellow:hover {
    color: #c6951a;
    background: #ffffff;
}
.newbtn-electric--purple {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 50px;
    color: #ffffff;
    background: linear-gradient(270deg, #885be8 0%, #553991 100%);
    border-radius: 35px;
    transition: all 0.2s ease;
    border: solid 2px #553991;
}
.newbtn-electric--purple:hover {
    color: #553991;
    background: #ffffff;
}
.newbtn-electric--white {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 50px;
    color: #333333;
    background: #ffffff;
    border-radius: 35px;
    transition: all 0.2s ease;
    border: solid 2px #ffffff;
}
.newbtn-electric--white:hover {
    color: #ffffff;
    background: #333333;
}
.newbtn-electric--blue {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 50px;
    color: #333333;
    background: linear-gradient(270deg, #3ADFFD 0%, #005BAC 100%);
    border-radius: 35px;
    transition: all 0.2s ease;
    border: solid 2px #ffffff;
    color: #ffffff;
}
.newbtn-electric--blue:hover {
    color: #005BAC;
    border: solid 2px #005BAC;
    background: #ffffff;
}

/* breadcrumbs
-------------------------------------------------- */
#breadcrumb {
    padding-top: 15px;
    padding-bottom: 45px;
}
#breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
    font-size: 1.0rem;
    line-height: 1;
}
#breadcrumb li {
    margin-bottom: 10px;
}
#breadcrumb li::after {
    content: "\e649";
    margin: 0 5px;
    font-family: 'themify';
    font-size: 1.0rem;
}
#breadcrumb li:last-child::after {
    display: none;
}
#breadcrumb a:hover {
    text-decoration: underline;
    color: #0578a7;
}
@media (min-width: 768px) {
    #breadcrumb {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    #breadcrumb ul {
        font-size: 1.2rem;
    }
    #breadcrumb li {
        margin-bottom: 0;
    }
}

/* Animation
-------------------------------------------------- */
.act-transition {
    -webkit-transition: .3s;
    transition: .3s;
}
/* 画面外にいる状態 */
[class*="act-fadeIn"] {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
    transition: opacity 1s ease, -webkit-transform 1s ease;
    transition: opacity 1s ease, transform 1s ease;
    transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
    will-change: transform;
}
.act-fadeIn.fadeInLeft {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
}
.act-fadeIn.fadeInRight {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
}
/* 画面内に入った状態 */
.act-fadeIn.is-scrollin {
    opacity: 1;
    transform: none;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.act-fadeDelay01 {
    -webkit-transition-delay: 0.2s !important;
    transition-delay: 0.2s !important;
}
.act-fadeDelay02 {
    -webkit-transition-delay: 0.4s !important;
    transition-delay: 0.4s !important;
}
.act-fadeDelay03 {
    -webkit-transition-delay: 0.6s !important;
    transition-delay: 0.6s !important;
}
.act-fadeDelay04 {
    -webkit-transition-delay: 0.8s !important;
    transition-delay: 0.8s !important;
}
.act-fadeDelay05 {
    -webkit-transition-delay: 1s !important;
    transition-delay: 1s !important;
}
.act-fadeDelay06 {
    -webkit-transition-delay: 1.2s !important;
    transition-delay: 1.2s !important;
}
.act-fadeDelay07 {
    -webkit-transition-delay: 1.4s !important;
    transition-delay: 1.4s !important;
}
.act-fadeDelay08 {
    -webkit-transition-delay: 1.6s !important;
    transition-delay: 1.6s !important;
}
.act-fadeDelay09 {
    -webkit-transition-delay: 1.8s !important;
    transition-delay: 1.8s !important;
}
.act-fadeDelay10 {
    -webkit-transition-delay: 2s !important;
    transition-delay: 2s !important;
}
.act-zoom {
    position: relative;
    overflow: hidden;
}
.act-zoom img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.act-zoom:hover img, .act-zoom.is-touch img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

/* OverLayerConfig
-------------------------------------------------- */
.globalNav--bg {
    z-index: 1000;
}
.l-header, .globalNav--content {
    z-index: 1001;
}
.logo {
    z-index: 1002;
}
.l-mark {
    z-index: 2000;
}
.subNav {
    z-index: 1000;
}

/* logosvg
-------------------------------------------------- */
.b {fill: #005BAC;}
.b2 {fill: #08408A;}
.b3 {fill: #8BC6F5;}
.g {fill: #595757;}
.g2 {fill: #333;}
.y {fill: #C6951A;}
.y2 {fill: #e2cc48;}
.r {fill: #BA3E00;}
.p {fill: #4849B7;}
.w {fill: #ffffff;}

/* common-contact
-------------------------------------------------- */
.common-contactWrap {
}
.common-contactWrap [class*="ttl-"] {
    font-size: 1.6rem;
}
.common-contactWrap .sub-ttl {
    display: block;
    color: #939393;
}
.common-contactWrap .common-contact-list li {
    width: 100%;
    margin: 0;
}
.common-contactWrap .common-contact-list li:nth-child(1) {
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .common-contactWrap [class*="ttl-"] {
        font-size: 2.0rem;
    }
    .common-contactWrap .sub-ttl {
        font-size: 1.8rem;
    }
    .common-contactWrap .common-contact-list li {
        width: auto;
        margin: 0 20px;
    }
    .common-contactWrap .common-contact-list li:nth-child(1) {
        margin-bottom: 0;
    }
}
.common-contactWrap .common-contact-list .btn-common-contact,
.common-contactWrap .common-contact-list .btn-enter-contact,
.common-contactWrap .common-contact-list .btn-package-contact,
.common-contactWrap .common-contact-list .btn-cloud-contact,
.common-contactWrap .common-contact-list .btn-common-contact-tel {
    width: 100%;
    height: 88px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-transition: background .3s;
    transition: background .3s;
    color: #ffffff;
    font-weight: 900;
    font-size: 2.0rem;
}
@media (min-width: 768px) {
    .common-contactWrap .common-contact-list .btn-common-contact,
    .common-contactWrap .common-contact-list .btn-enter-contact,
    .common-contactWrap .common-contact-list .btn-package-contact,
    .common-contactWrap .common-contact-list .btn-cloud-contact,
    .common-contactWrap .common-contact-list .btn-common-contact-tel {
        width: 380px;
    }
}
.common-contactWrap .common-contact-list .btn-common-contact {
    background-color: #2883EB;
    border: solid 3px #2883EB;
}
.common-contactWrap .common-contact-list .btn-common-contact:hover {
    background-color: #ffffff;
    color: #2883EB;
}
.common-contactWrap .common-contact-list .btn-enter-contact {
    background-color: #C6951A;
    border: solid 3px #C6951A;
}
.common-contactWrap .common-contact-list .btn-enter-contact:hover {
    background-color: #ffffff;
    color: #C6951A;
}
.common-contactWrap .common-contact-list .btn-package-contact {
    background-color: #BA3E00;
    border: solid 3px #BA3E00;
}
.common-contactWrap .common-contact-list .btn-package-contact:hover {
    background-color: #ffffff;
    color: #BA3E00;
}
.common-contactWrap .common-contact-list .btn-cloud-contact {
    background-color: #4849B7;
    border: solid 3px #4849B7;
}
.common-contactWrap .common-contact-list .btn-cloud-contact:hover {
    background-color: #ffffff;
    color: #4849B7;
}
.common-contactWrap .common-contact-list .btn-common-contact-tel {
    background-color: #ffffff;
    border: solid 3px #2883EB;
    color: #333333;
    font-weight: 900;
    font-size: 2.8rem;
}
.common-contactWrap .common-contact-list .btn-common-contact .fa,
.common-contactWrap .common-contact-list .btn-common-contact-tel .fa {
    font-size: 3.0rem;
    margin-right: 15px;
}
.common-contactWrap .common-contact-list .btn-common-contact-tel .txt {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
}
@media (min-width: 768px) {
    .common-contactWrap .common-contact-list .btn-common-contact-tel {
        border: solid 3px #ffffff;
        cursor: default;
        pointer-events: none;
    }
}

/* tag
-------------------------------------------------- */
.tag-e,
.tag-p,
.tag-c,
.tag-auction,
.tag-lite {
    display: inline-table;
    padding: 3px 7px;
    font-size: 1.2rem;
    color: #fff;
    width: max-content;
}
@media (min-width: 768px) {
    .tag-e,
    .tag-p,
    .tag-c,
    .tag-auction,
    .tag-lite {
        padding: 3px 15px;
    }
}
.tag-e {background-color: #C6951A;}
.tag-p, .tag-auction, .tag-lite {background-color: #BA3E00;}
.tag-c {background-color: #4849B7;}

/* display-u
-------------------------------------------------- */
.u-d-sp{display: block;}
.u-d-pc{display: none;}
span.u-d-sp{display: inline;}
@media (min-width: 768px) {
  .u-d-sp{display: none;}
  .u-d-pc{display: block;}
  span.u-d-pc{display: inline;}
}

/* img hover
-------------------------------------------------- */
a.imglink:hover { opacity:0.8; }

/* earnings
-------------------------------------------------- */
#earnings [class*="Wrap"] {
    max-width: 600px;
    margin: 0 15px 60px;
}
.earnings-up {
    display: block;
    width: 100%;
    background: linear-gradient(270deg, #fa6e30 0%, #ef380e 100%);
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all .3s;
}
.earnings-up:hover { box-shadow: 1px 1px 15px rgb(0 0 0 / 30%); }
.earnings-up .earnings-up-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.earnings-up .earnings-up-content > div { width: 100%; }
.earnings-up .earnings-up-content .titlearea { position: relative; }
.earnings-up .period {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 70px;
    height: 70px;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: bold;
    background: #C72C09;
    border-radius: 50%;
    box-sizing: border-box;
    top: -30px;
    right: -20px;
    line-height: 2.4rem;
}
.earnings-up .period:before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: -5px;
    margin-top: -15px;
    border: 10px solid transparent;
    border-right: 10px solid #C72C09;
    z-index: 0;
    -webkit-transform: rotate(75deg);
    transform: rotate(75deg);
}
.earnings-up h2 { font-size: 2.8rem; }
.earnings-up .txt {
    font-size: 1.4rem;
    letter-spacing: 0.009em;
    line-height: 1.4;
    margin-bottom: 10px;
}
.earnings-up .caption {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 0;
}
.earnings-up .caption span {
    position: relative;
    display: inline-block;
    line-height: 1;
}
.earnings-up .caption span:before {
    position: absolute;
    left: -10px;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: #ffffff;
    border-radius: 3px;
    transform: rotate(-25deg);
}
.earnings-up .caption span:after {
    position: absolute;
    content: "";
    right: -10px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #ffffff;
    border-radius: 3px;
    transform: rotate(25deg);
}
.earnings-up .btn {
    background-color: #ffffff;
    color: #EF390E;
    text-align: center;
    padding: 7px 40px;
    border-radius: 19px;
    font-size: 1.4rem;
    font-weight: 900;
    transition: all .3s;
}
.earnings-up:hover .btn { box-shadow: 1px 1px 15px rgb(0 0 0 / 14%); }
@media (min-width: 768px) {
    #earnings [class*="Wrap"] { margin: 0 auto 40px; }
    .earnings-up {
        height: 120px;
        padding: 10px 30px;
    }
    .earnings-up .earnings-up-content > div { width: auto; }
    .earnings-up h2 { font-size: 3.4rem; }
    .earnings-up .txt { font-size: 1.5rem; }
    .earnings-up .caption { margin-top: 20px; }
    .earnings-up .period { right: -50px; }
}
