<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";




/** FONTS
==============================================*/
/** JS LIBS
==============================================*/
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("./../images_v3/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    src: url("./fonts/slick.eot");
    src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 24px;
    width: 24px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

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

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
        background-size: 22px auto;
    }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    opacity: 0.8;
    color: transparent;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
}

.slick-prev {
    left: 20px;
    background-image: url(../images_v3/common/slider-arrow-prev.png);
    z-index: 111;
}

@media only screen and (max-width: 767px) {
    .slick-prev {
        left: 5px;
    }
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: 20px;
}

.slick-next {
    right: 20px;
    background-image: url(../images_v3/common/slider-arrow-next.png);
    z-index: 111;
}

@media only screen and (max-width: 767px) {
    .slick-next {
        right: 5px;
    }
}

[dir="rtl"] .slick-next {
    left: 20px;
    right: auto;
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 40px;
}

.slick-dots {
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
    position: absolute;
    bottom: -40px;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 12px;
    width: 12px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 12px;
    line-height: 12px;
}

.slick-dots li.slick-active button {
    color: #6E6E6E;
    background-color: #6E6E6E;
    opacity: 1;
}

/**
 * COMMON
-----------------------------------------------------------*/
body {
    background-color: #fff;
    font-size: 14px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    text-rendering: optimizeLegibility;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 1.2rem;
    }
}

.site-main {
    color: #2f3438;
}

.small {
    font-size: 85.7%;
}

.w880 {
    max-width: 880px;
    margin: 0 auto;
}

@-webkit-keyframes shiny {
    0% {
        left: -30%;
    }

    30% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@keyframes shiny {
    0% {
        left: -30%;
    }

    30% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@media only screen and (max-width: 767px) {
    .figure img {
        width: 100%;
        height: auto;
    }
}

/**
 * Icon Font
 */
@font-face {
    font-family: 'fontello';
    src: url("../font/fontello.eot?10553169");
    src: url("../font/fontello.eot?10553169#iefix") format("embedded-opentype"), url("../font/fontello.woff2?10553169") format("woff2"), url("../font/fontello.woff?10553169") format("woff"), url("../font/fontello.ttf?10553169") format("truetype"), url("../font/fontello.svg?10553169#fontello") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.svg?10553169#fontello') format('svg');
}
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-search:before {
    content: '\e800';
}

/* '' */
.icon-right-circle:before {
    content: '\e801';
}

/* '' */
.icon-left-circle:before {
    content: '\e802';
}

/* '' */
.icon-down-open:before {
    content: '\e803';
}

/* '' */
.icon-basket:before {
    content: '\e804';
}

/* '' */
.icon-cancel:before {
    content: '\e805';
}

/* '' */
.icon-home:before {
    content: '\e806';
}

/* '' */
.icon-up-open:before {
    content: '\e807';
}

/* '' */
.icon-th-large:before {
    content: '\e809';
}

/* '' */
.icon-menu:before {
    content: '\f0c9';
}

/* '' */
.icon-angle-left:before {
    content: '\f104';
}

/* '' */
.icon-angle-right:before {
    content: '\f105';
}

/* '' */
.icon-angle-up:before {
    content: '\f106';
}

/* '' */
.icon-angle-down:before {
    content: '\f107';
}

/* '' */
.text-center {
    text-align: center;
}

.show-small {
    display: none;
}

@media only screen and (max-width: 767px) {
    .show-small {
        display: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .hide-small {
        display: none;
    }
}

a {
    color: #111;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #444444;
    text-decoration: none;
}

a .alpha {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
}

@media only screen and (max-width: 767px) {
    a .alpha {
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
    }
}

a:hover .alpha {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
}

@media only screen and (max-width: 767px) {
    a:hover .alpha {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }
}




.section-comparison a {
    text-decoration: underline;
    color: #1953c7;

}

/*------- ttl -------*/
.ttl_service-name {
    font-size: 2.8rem;
}

.main-content_inner {
    margin: 15px 0 50px 0;
}

.main-content_inner .rogo img {
    max-height: 26px;
    width: auto;
    max-width: 100%;
}

.main-content_inner&gt;div {
    float: left;
    width: 360px;
}

.ttl_square {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
}

.ttl_square:before {
    content: '■';
    padding: 0 3px 0 0;
}

.expand-main-content section&gt;figure,
.main-content_inner figure {
    float: right;
    margin-left: 20px;
}

.expand-main-content section&gt;figure img,
.main-content figure img {
    width: 232px;
}

.content-box {
    margin-bottom: 25px;
}

.main-content {
    padding: 30px;
    background: #fff;
}

.main-content_inner {
    margin: 15px 0 50px 0;
}

.main-content_inner&gt;div {
    float: left;
    width: 360px;
}

.expand-main-content section&gt;figure,
.main-content_inner figure {
    float: right;
    margin-left: 20px;
}

.main-content_inner .rogo {
    margin-bottom: 10px;
}

.main-content_inner .rogo img {
    max-height: 26px;
    width: auto;
    max-width: 100%;
}

.main-content_inner .rogo.long img {
    max-height: 48px;
}

.expand-main-content section&gt;figure img,
.main-content figure img {
    width: 232px;
}

.expand-main-content {
    border-top: 1px #dbdbdb solid;
    background: #fff;
    display: none;
}

.expand-main-content section {
    padding: 25px 30px;
}

.bo_top {
    border-top: 1px #dbdbdb solid;
}

.box1-2 {
    float: left;
    width: 49.2%;
    margin-right: 10px;
}

.box1-3 {
    float: left;
    width: 31%;
    margin-right: 3%;
}

@media only screen and (max-width: 768px) {
    .main-content {
        padding: 0 14px 14px;
        background: #fff;
    }

    .content-box {
        margin-bottom: 14px;
        margin-top: -15px;
        padding-top: 15px;
    }

    .expand-main-content section {
        padding: 14px;
    }

    .main-content_inner {
        margin: 0 0 25px 0;
    }

    .expand-main-content section&gt;figure+div,
    .main-content_inner&gt;div {
        float: none;
        width: 100%;
        margin-top: 15px;
    }

    .expand-main-content section&gt;figure,
    .main-content figure {
        float: none;
        text-align: center;
        display: block;
        margin-left: 0px;
    }

    .main-content_inner .rogo {
        text-align: center;
    }

    .main-content figure img,
    .expand-main-content section&gt;figure img,
    .expand-main-content img {
        width: 100%;
        height: auto;
    }

    .box1-2,
    .box1-3 {
        float: none;
        width: 100%;
    }
}

#luggage_counter&gt;section {
    padding: 25px 30px;
    background: #fff;
}

#luggage_counter .tableA th {
    width: 100px;
}

@media only screen and (max-width: 768px) {
    #luggage_counter&gt;section {
        padding: 15px 14px;
    }

    #luggage_counter img {
        width: 100%;
    }
}

#mobilerental,
.popup-content-html {
    width: 750px;
}

@media only screen and (max-width: 768px) {
    #wifimobile .listbox_1-3_w200 p.listbox_1-3_w200-txt {
        height: auto;
    }

    #mobilerental,
    .popup-content-html {
        width: auto;
    }
}

@media only screen and (max-width: 768px) {
    .main-content {
        padding: 0 14px 14px;
        background: #fff;
    }

    .content-box {
        margin-bottom: 14px;
        margin-top: -15px;
        padding-top: 15px;
    }

    .expand-main-content section {
        padding: 14px;
    }

    .main-content_inner {
        margin: 0 0 25px 0;
    }

    .expand-main-content section&gt;figure+div,
    .main-content_inner&gt;div {
        float: none;
        width: 100%;
        margin-top: 15px;
    }

    .expand-main-content section&gt;figure,
    .main-content figure {
        float: none;
        text-align: center;
        display: block;
        margin-left: 0px;
    }

    .main-content_inner .rogo {
        text-align: center;
    }

    .main-content figure img,
    .expand-main-content section&gt;figure img,
    .expand-main-content img {
        width: 100%;
        height: auto;
    }

    .box1-2,
    .box1-3 {
        float: none;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .ttl_service-name {
        padding: 20px 0 12px;
        font-size: 1.8rem;
        text-align: center;
    }
}

.notes {
    font-size: 0.9rem;
    color: #777c80;
}

.content-box ul li {
    text-indent: -1em;
    padding-left: 1em;
    margin-left: 0;
}

.notes li {
    margin: 0 0 3px 0;
}

.list_kome li:before {
    content: '※';
    margin: 0 3px 0 0;
}

.w1300 {
    max-width: 1300px;
    margin: 0 auto;
}

.modal {
    display: none;
}

@media only screen and (min-width: 768px) {
    #navbox {
        display: none;
    }
}

.btn a {
    display: block;
    padding: 1em 0;
    -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
    margin: 1.5em auto;
    text-align: center;
    font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
    .btn a {
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
        font-size: 1.2rem;
        width: 100%;
    }
}

.btn .more {
    background-color: #969FA5;
    color: #fff;
}

.btn .more:hover {
    background-color: #a4acb1;
}

@media only screen and (max-width: 767px) {
    .btn .more:hover {
        background-color: #969FA5;
    }
}

.btn .apply {
    background-color: #DB2E41;
    color: #fff;
}

.btn .apply:hover {
    background-color: #df4455;
}

@media only screen and (max-width: 767px) {
    .btn .apply:hover {
        background-color: #DB2E41;
    }
}

.link {
    text-decoration: underline;
    color: #1953c7;
}

.link:hover {
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .link:hover {
        text-decoration: underline;
    }
}

/* area-comparison */

/* 
.area-comparison {
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .area-comparison {
        padding: 0;
    }
}


.section-comparison th.platinum,
.section-comparison th.pearl,
.section-comparison th.blue,
.section-comparison th.gold,
.section-comparison th.sbs {
    position: relative;
}

.area-comparison .btn-more,
.area-comparison .btn-apply {
    margin-bottom: 0;
}

.area-comparison .btn-more a,
.area-comparison .btn-apply a {
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    color: #fff;
}

.area-comparison .btn-apply.split:after {
    content: "";
    display: table;
    clear: both;
}

.area-comparison .btn-apply.split a {
    display: block;
    width: 49%;
    font-size: 11px;
    ;
}

.area-comparison .btn-apply.split a:nth-child(1) {
    float: left;
}

.area-comparison .btn-apply.split a:nth-child(2) {
    float: right;
}

.area-comparison .btn-apply+.btn-more {
    margin-top: 3px;
}


.section-comparison a.all_link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }


.area-comparison .notes {
    margin-top: 1em;
}

.area-comparison i {
    color: #ff0000;
    font-style: normal;
}

.area-comparison .comparison_list_thead table {
    margin-bottom: -1px;
}

.area-comparison table {
    width: 100%;
    table-layout: fixed;
    font-size: 87%;
    border-collapse: collapse;
}

.area-comparison table,
.area-comparison td,
.area-comparison th {
    border: 1px #eaeaea solid;
}

.area-comparison .thead th {
    padding: 10px;
    font-weight: normal;
}
.area-comparison .thead th .card {
    margin: 0 auto;
}

.area-comparison td {
    padding: 10px 15px;
    vertical-align: top;
}

.area-comparison .ttl {
    width: 224px;
    text-align: left;
    padding: 10px 15px;
}

.area-comparison .ttl_sub {
    width: 112px;
    padding: 10px 15px;
}

.area-comparison .red {
    color: #dd2b3c;
    font-size: 110%;
}

.area-comparison .red.small {
    font-size: 12px;
}

.area-comparison .bold {
    font-weight: bold;
}

.area-comparison img {
    width: 100%;
}

.area-comparison .logo {
    display: block;
    margin:0 0 6px;
}

.area-comparison .card img {
    width: 116px;
    height: auto;
}

.area-comparison td span {
    font-size: 88%;
    display: block;
    font-weight: normal;
}

.area-comparison .tbody tr:nth-child(odd) {
    background: #f6f6f6;
}

@media only screen and (max-width: 767px) {
    .area-comparison table {
        width: 100%;
    }

    .area-comparison .thead th {
        padding: 5px 10px;
    }

    .area-comparison .thead .card {
        padding: 0 10px;
        margin: 0 0 3px;
    }

    .area-comparison .card img {
        width: 100%;
        height: auto;
        max-width: 76px;
    }

    .area-comparison img {
        width: 100%;
        max-width: 120px;
    }

    .area-comparison td,
    .area-comparison .tbody th {
        padding: 5px 10px;
    }

    .area-comparison .ttl {
        width: 30%;
        padding: 5px 10px;
    }

    .area-comparison .ttl_sub {
        width: 15%;
        padding: 5px 10px;
    }

    .area-comparison .ttl.spnone {
        color: #2f3438;
        text-decoration: none;
    }

    .area-comparison td.ttl span {
        display: none;
        margin: 0;
    }

    .area-comparison .text {
        text-align: center;
    }

    .area-comparison table .pearl,
    .area-comparison table .sbs {
        display: none;
    }

    .area-comparison .comparison_nav {
        margin: 0 0 10px 0;
    }

    .area-comparison .comparison_nav ul {
        display: table;
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%;
    }

    .area-comparison .comparison_nav ul li {
        border: 1px solid #eaeaea;
        padding: 5px;
        text-align: center;
        display: table-cell;
    }

    .area-comparison img {
        display: block;
        margin: 0 auto;
    }

    .area-comparison .red.small {
        font-size: 10px;
    }
} */

.section-comparison .btn-more a {
    background-color: #969FA5;
    padding: 10px 0;
}

.section-comparison .btn-apply a {
    background-color: #dd2b3c;
    padding: 10px 0;
}

.section-comparison .btn-more a:hover {
    background-color: #889299;
}

.section-comparison .btn-apply a:hover {
    background-color: #ce2131;
}

.site-main {
    padding: 0 60px;
}

@media (max-width: 1280px) {
    .site-main {
        padding: 0 30px;
        padding: 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    .site-main {
        padding: 0 10px;
    }
}

.notes li {
    margin-left: 1em;
    text-indent: -1em;
}

.notes+p {
    margin-top: 1em;
}

.notes+.notes {
    margin-top: 1em;
}

.page-title {
    background-size: cover;
    background-position: 50% 50%;
}

.page-title h1 {
    font-size: 2.4rem;
}

@media only screen and (max-width: 767px) {
    .page-title h1 {
        font-size: 1.8rem;
    }
}

.section .headline {
    text-align: center;
    margin-bottom: 45px;
}

.section .headline__title {
    font-size: 3.4rem;
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .section .headline__title {
        font-size: 2.2rem;
    }
}

.section .headline__title:after {
    content: ' ';
    display: block;
    width: 3em;
    margin: 30px auto 0;
    border-bottom: 1px solid #a0a0a0;
}

@media only screen and (max-width: 767px) {
    .section .headline__title:after {
        margin-top: 15px;
    }
}

.section.gray {
    background-color: #F6F6F6;
}

.section-content {
    padding: 65px 0;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .section-content {
        padding: 20px 0;
    }
}

.section-content+.section-content {
    padding-top: 0;
}

.bg-gray {
    background-color: #F6F6F6;
}


@media only screen and (max-width: 767px) {
    .page--faq .section-faq {
        margin-bottom: 15px;
    }
}

.page--faq .section-faq .section-content {
    padding: 35px 0;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-faq .section-content {
        padding: 10px 10px 0 10px;
    }

    .page--faq .section-faq .section-content .row {
        padding: 0;
    }
}

.page--faq .headline {
    margin-bottom: 0;
}

.page--faq .section-faq .headline {
    font-size: 2.0rem;
    margin: 0.5em 0 1.4em;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-faq .headline {
        font-size: 1.4rem;
    }
}

.page--faq .section-faq-area {
    margin-bottom: 45px;
}

.page--faq .section-faq .content .panel {
    background-color: #fff;
}

.page--faq .section-faq .content .faq-list li {
    margin: 6px 0;
}

.page--faq .section-faq .content dl dt {
    font-size: 1.8rem;
    font-weight: bold;
    display: table;
    width: 100%;
    cursor: pointer;
    position: relative;
}

.page--faq .section-faq .content dl dt::after {
    position: absolute;
    top: -3px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 30px;
    width: 10px;
    height: 10px;
    border-top: 1px solid;
    border-right: 1px solid;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.page--faq .section-faq .content dl dt.active::after {
    top: 5px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.page--faq .section-faq .content dl dt&gt;div,
.page--faq .section-faq .content dl dd&gt;div {
    display: table-cell;
    padding: 24px 50px 24px 24px;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-faq .content dl dt::after {
        right: 15px;
    }

    .page--faq .section-faq .content dl dt&gt;div,
    .page--faq .section-faq .content dl dd&gt;div {
        display: table-cell;
        padding: 15px 35px 10px 12px;
    }
}

.page--faq .section-faq .content dl dd {
    display: table;
    width: 100%;
    border-top: 1px solid #dbdbdb;
}

.page--faq .section-faq .content dl .faq_q {
    color: #969fa5;
    width: 30px;
    padding-right: 0;
}

.page--faq .section-faq .content dl .faq_a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #658ccc;
    width: 30px;
    padding-right: 0;
}

.page--faq .section-faq .content .notes {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-faq .content .notes {
        font-size: 1.1rem;
        margin: 0 0 5px 0;
    }
}

.page--faq .section-faq .content .notes li {
    text-indent: -1.2rem;
    padding-left: 1.2rem;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-faq .content dl dt {
        font-size: 1.4rem;
    }
}

.page--faq .section-faq .content dl dd {
    font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-faq .content dl dd {
        font-size: 1.2rem;
    }
}

.page--faq .section-faq .content .ext {
    margin-bottom: 0;
    color: #658ccc;
    display: inline-block;
    padding-left: 20px;
    background-image: url(../images_v3/faq/icon-arrow.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
}
.page--faq .section-faq .content .ext02 {
    color: #658ccc;
}
.page--faq .section-faq .content .ext02:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-faq .content .ext {
        background-size: 12px auto;
        padding-left: 15px;
    }
}

.page--faq .section-hero .section-content {
    padding: 0;
}

.page--faq .section-hero .headline {
    padding-top: 50px;
}

@media only screen and (max-width: 767px) {
    .page--faq .section-hero .headline {
        padding-top: 25px;
        margin-bottom: 25px;
    }
}

.page--service .section-content {
    padding: 60px 0;
}

@media only screen and (max-width: 767px) {
    .page--service .section-content {
        padding: 30px 0;
    }
}


.page--service .section-campaign-bnr {
    padding-bottom: 70px;
}
.page--service .section-campaign-bnr .cell.auto {
    width: 100%;
}
.page--service .section-campaign-bnr .cell.auto:not(:last-child) {
    margin-bottom: 40px;
}
.page--service .section-campaign-bnr figure {
    text-align: center;
}

.page--service .section-campaign-bnr figure a:hover {
    opacity: 0.7;
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
}

.page--service .section-campaign-bnr figure img {
    max-width: 870px;
}
/* .page--service .section-campaign-bnr .grid-x&gt;.cell:last-child{float: right;} */
@media only screen and (max-width: 767px) {
    .page--service .section-campaign-bnr {
        padding-bottom: 30px;
    }
	.page--service .section-campaign-bnr .grid-x&gt;.cell{float: none;}
    /* .page--service .section-campaign-bnr .grid-x&gt;.cell:last-child{padding-top: 20px;} */
    .page--service .section-campaign-bnr figure img {
        margin: 0 auto;
        max-width: 100%;
    }
}

.page--service .section-campaign {
    padding: 0 60px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign {
        padding: 0;
    }
}

.page--service .section-campaign .headline {
    margin-bottom: 0;
}

.page--service .section-campaign .headline .lead {
    margin: 2em 0;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .headline .lead {
        margin: 1em;
        font-size: 1.0rem;
    }
}

.page--service .section-campaign .content {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
}

.page--service .section-campaign .panel {
    background-color: #fff;
    padding: 30px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .panel {
        padding: 15px;
    }

    .page--service .section-campaign .panel .grid-x {
        display: block;
    }
}

.page--service .section-campaign .panel .img {
    width: 320px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .panel .img {
        width: auto;
    }

    .page--service .section-campaign .panel .img img {
        width: 100%;
        height: auto;
    }
}

.page--service .section-campaign .panel .txt {
    width: calc(100% - 320px);
    padding-left: 30px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .panel .txt {
        width: auto;
        padding: 1em 0 0;
    }
}

.page--service .section-campaign .panel .term {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page--service .section-campaign .panel .term dt {
    background-color: #9CA5A9;
    color: #fff;
    font-size: 1.1rem;
    padding: 3px 1em;
    font-weight: bold;
    text-align: center;
    width: 10em;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .panel .term dt {
        font-size: 1.0rem;
        padding: 3px 5px;
        width: 35%;
    }
}

.page--service .section-campaign .panel .term dd {
    padding-left: 1em;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .panel .term dd {
        font-size: 1.0rem;
        width: 65%;
    }
}

.page--service .section-campaign .panel .term+.term {
    margin-top: 5px;
}

.page--service .section-campaign .block {
    margin-bottom: 30px;
}

.page--service .section-campaign .block__title {
    font-size: 2.0rem;
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    margin-bottom: 0.5em;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .block__title {
        font-size: 1.5rem;
    }
}

.page--service .section-campaign .block .btn {
    margin-top: 1em;
}

.page--service .section-campaign .block .btn .apply {
    margin: 0;
    width: 16em;
    font-size: 1.6rem;
    padding: 0.65em 0;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .block .btn .apply {
        width: auto;
        font-size: 1.3rem;
    }
}

.page--service .section-campaign #section-F .box {
    margin: 3px;
    padding: 5px 0px 0px 0px;
    width: 670px;
    height: 140px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign #section-F .box {
        width: auto;
        height: auto;
    }
}

.page--service .section-campaign #section-F .box-R {
    margin: 0 0 30px;
    padding: 5px 0px 0px 5px;
    width: 660px;
    height: 100%;
    float: right;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign #section-F .box-R {
        width: auto;
        height: auto;
        float: none;
    }
}

.page--service .section-campaign #section-F .box-L {
    margin: 0px;
    padding: 0px 0px 30px 5px;
    float: left;
    width: 300px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign #section-F .box-L {
        padding: 0;
        width: auto;
        height: auto;
        float: none;
        text-align: center;
    }
}

.page--service .section-campaign #section-F p {
    margin: 3px 0px 0px 0px;
}

.page--service .section-campaign #section-F p.title {
    margin: 5px 0px 12px 0px;
    font-size: 12px;
    font-weight: bold;
    color: #006eb7;
}

.page--service .section-campaign #section-F p.title2 {
    font-size: 12px;
    color: #006eb7;
    margin: 5px 0px 12px 0px;
}

.page--service .section-campaign #section-F p.title3 {
    margin: 10px 0px 12px 0px;
    font-size: 12px;
    font-weight: bold;
    color: #FF0000;
}

.page--service .section-campaign #section-F p.note {
    font-size: 12px;
    color: #ff0000;
}

.page--service .section-campaign #section-F p.right {
    margin: 5px 0px 0px 90px;
}

.page--service .section-campaign #section-F .btn_01 {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign #section-F .btn_01 {
        margin-top: 20px;
    }
}

.page--service .section-campaign #section-F .connectBtn {
    margin: 5px 0px 0px 189px;
}

.page--service .section-campaign #section-F img {
    margin: 5px 5px 5px 0px;
}

.page--service .section-campaign #section-F .btn_01 img {
    margin: 5px 5px 0 0;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign #section-F .btn_01 img {
        margin: 0;
    }
}

.page--service .section-campaign #section-F img.IMGCENTER {
    vertical-align: middle;
}

.page--service .section-campaign #section-F .table {
    margin: 20px 0px 20px 0px;
}

.page--service .section-campaign #section-F p {
    margin: 3px 0px 0px 0px;
}

.page--service .section-campaign #section-G {
    padding: 10px 0 15px 0;
}

.page--service .section-campaign #section-G .box-L {
    margin: 0px;
    padding: 0px 0px 0px 5px;
    width: 120px;
    float: left;
}

.page--service .section-campaign #section-G p a {
    background: url(../img/ic_blank.gif) no-repeat right center;
    padding-right: 15px;
}

.page--service .section-campaign hr.line {
    width: 99%;
    border: 1px solid #cccccc;
    clear: both;
    display: block;
    margin: 2em 0;
}

.page--service .section-campaign .campaign {
    margin-bottom: 50px;
    color: #4c4c4c;
    background-color: #fff;
    padding: 20px;
    font-size: 1.6rem;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .campaign {
        font-size: 1.3rem;
    }
}

.page--service .section-campaign .campaign .btn {
    position: relative;
    display: inline-block;
    padding: .75rem 3rem;
    background-color: #012c71;
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .campaign .btn {
        font-size: 1.6rem;
        width: 80%;
        margin: 0 auto;
        padding: 1em 0;
    }
}

.page--service .section-campaign .campaign .btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: .75rem;
    width: 0.45rem;
    height: 0.45rem;
    border: 1px solid transparent;
    border-top-color: #fff;
    border-right-color: #fff;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}

.page--service .section-campaign .campaign p.note {
    font-size: 10px;
    margin-top: 0.5em;
}

.page--service .section-campaign .campaign .fl {
    width: 28%;
    padding-right: 1%;
    float: left;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .campaign .fl {
        width: auto;
        float: none;
        text-align: center;
        padding: 0 0 1em;
    }
}

.page--service .section-campaign .campaign .fr {
    width: 72%;
    float: right;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .campaign .fr {
        width: auto;
        float: none;
    }
}

.page--service .section-campaign .campaign .fr&gt;p+p {
    margin-top: 1em;
}

.page--service .section-campaign .campaign .fr ul {
    margin-bottom: 20px;
}

.page--service .section-campaign .campaign .fr li {
    text-indent: -1em;
    padding-left: 1em;
}

.page--service .section-campaign .campaign h4 {
    background: url(/amexconnect/images/new.gif) no-repeat left top;
    padding-left: 40px;
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.page--service .section-campaign .campaign h4.h4none {
    background: none;
    padding-left: 0;
}

.page--service .section-campaign .campaign .term {
    margin-bottom: .75em;
}

.page--service .section-campaign .campaign p.key {
    text-align: center;
    vertical-align: top;
    letter-spacing: 0.1em;
    margin-right: 2%;
    padding: 0.25em;
    background-color: #e0e9f6;
    color: #002665;
    line-height: 20px;
    height: auto;
    font-weight: bold;
}

@media only screen and (min-width: 768px) {
    .page--service .section-campaign .campaign p.key {
        width: 25%;
        display: inline-block;
    }
}

.page--service .section-campaign .campaign p.key.line2 {
    height: auto;
    line-height: 1.3;
    padding: 3px 0;
}

.page--service .section-campaign .campaign p.value {
    text-align: left;
    vertical-align: top;
    letter-spacing: normal;
    line-height: 1.5;
}

@media only screen and (min-width: 768px) {
    .page--service .section-campaign .campaign p.value {
        display: inline-block;
        width: 70%;
    }
}

.page--service .section-campaign .campaign p.value span {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
    font-size: 0.8em;
    line-height: 1.4;
}
.page--service .section-campaign .campaign p.value span:first-of-type {
    margin-top: 0.5em;
}

.page--service .section-campaign .campaign .btn_campaign {
    margin-top: 25px;
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .page--service .section-campaign .campaign .btn_campaign {
        text-align: center;
    }
}

.page--service .section-campaign .campaign .btn_campaign img {
    margin-bottom: 5px;
}

.page--service .section-campaign .content.row {
    padding: 0 10px;
}

.page--service .section-family {
    margin-top: 55px;
}

.page--service .section-family .panel {
    padding: 0 60px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-family .panel {
        padding: 20px 0 0;
    }
}

.page--service .section-family .panel .btn {
    margin-bottom: 0;
}

.page--service .section-family .panel .btn a {
    margin-bottom: 0;
}

.page--service .section-family .panel dt {
    font-size: 2.2rem;
    margin-bottom: 1em;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .page--service .section-family .panel dt {
        font-size: 1.6rem;
    }
}

.page--service .section-family .content {
    background-image: url(../images_v3/service/family-bg.jpg);
    background-size: cover;
    background-position: 50% 50%;
    height: 460px;
    padding-top: 55px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-family .content {
        height: auto;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .page--service .section-family .headline {
        margin-bottom: 30px;
    }
}

.page--service .section-hero {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .page--service .section-hero {
        margin-bottom: 10px;
    }
}

.page--service .section-hero .section-content {
    padding: 0;
}

.page--service .section-hero .external {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 0 70px;
}

@media only screen and (max-width: 767px) {
    .page--service .section-hero .external {
        padding: 20px 0 0;
    }
}

.page--service .section-hero .extnav:after {
    content: "";
    display: table;
    clear: both;
}

@media only screen and (max-width: 767px) {
    .page--service .section-hero .extnav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 -3px;
    }
}

.page--service .section-hero .extnav li {
    padding: 0 10px;
    float: left;
    width: 20%;
    padding-top: 1.5em;
    position: relative;
}
.page--service .section-hero .extnav li.sbs .sub {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    text-align: center;
    margin: 0 auto;
      background: -webkit-linear-gradient(left, rgba(156, 156, 156,0) 0%,rgba(156, 156, 156,0.45) 9%,rgba(156, 156, 156,1) 20%,rgba(156, 156, 156,1) 40%,rgba(156, 156, 156,1) 80%,rgba(156, 156, 156,0.45) 91%,rgba(156, 156, 156,0) 100%);
      background: linear-gradient(to right, rgba(156, 156, 156,0) 0%,rgba(156, 156, 156,0.45) 9%,rgba(156, 156, 156,1) 20%,rgba(156, 156, 156,1) 40%,rgba(156, 156, 156,1) 80%,rgba(156, 156, 156,0.45) 91%,rgba(156, 156, 156,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a08f59', endColorstr='#009e8d57',GradientType=1 );
    color: #fff;
    font-weight: bold;
    margin: 0 5%;
}

@media only screen and (max-width: 767px) {
    .page--service .section-hero .extnav li {
        width: 33.333%;
        padding: 1.5em 3px 0;
        margin: 0 0 20px;
    }
    .page--service .section-hero .extnav li.sbs .sub {
        font-size: 12px;
        width: 100%;
        margin: 0 auto;
        line-height: 1.5;
    }
}

.page--service .section-hero .extnav a {
    display: block;
    opacity: 1;
    -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
}

@media only screen and (max-width: 767px) {
    .page--service .section-hero .extnav a {
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
    }
}

.page--service .section-hero .extnav a:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 767px) {
    .page--service .section-hero .extnav a:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }
}


.page--service section.pickup-cp p {
    margin: 0;
}
.page--service section.pickup-cp .cp-list li {
    float: left;
    width: 49%;
    border-left: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
    padding: 15px;
    margin-bottom: 20px;
}
.page--service section.pickup-cp .cp-list li:hover {
    opacity: 0.7;
    transition: 0.3s;
}
.page--service section.pickup-cp .cp-list li:nth-child(odd) {
    margin-right: 2%;
}
.page--service section.pickup-cp .cp-list li .in {
    position: relative;
}
.page--service section.pickup-cp .cp-list li .in .link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.page--service section.pickup-cp .cp-list li .in .img_area,
.page--service section.pickup-cp .cp-list li .in .txt_area {
    display: table-cell;
    vertical-align: top;
}
.page--service section.pickup-cp .cp-list li .in .img_area {
    width: 100px;
    height: 100px;
}
.page--service section.pickup-cp .cp-list li .in .txt_area {
    padding-left: 13px;
}
.page--service section.pickup-cp .cp-list li .in .txt_area .title {
    font-size: 18px;
    font-weight: bold;
}
.page--service section.pickup-cp .cp-list li .in .txt_area .txt {
    font-size: 16px;
    /* border-top: 1px solid #cdcdcd; */
    padding-top: 10px;
}
@media only screen and (min-width: 450px) {
    .page--service section.pickup-cp .cp-list li .in .txt_area .title .show-small {
        display: none;
    }
}
@media only screen and (max-width: 350px) {
    .page--service section.pickup-cp .cp-list li .in .txt_area .title {
        font-size: 16px;
    }
    .page--service section.pickup-cp .cp-list li .in .txt_area .txt {
        font-size: 14px;
    }
}

.page--service section.pickup-cp .wide-bnr-area {
    padding: 30px 0;
}
.page--service section.pickup-cp .wide-bnr-area img {
    width: 100%;
}
.page--service section.pickup-cp a:hover {
    opacity: 0.7;
    transition: 0.3s;
}
@media only screen and (max-width: 767px) {
    .page--service section.pickup-cp .cp-list li {
        width: 100%;
        float: none;
        border-left: none;
        padding: 0;
        padding-bottom: 20px;
    }
    .page--service section.pickup-cp .cp-list li:nth-child(odd) {
        margin-right: 0;
    }
    .page--service section.pickup-cp .cp-list li .in .img_area {
        width: 33%;
    }
    .page--service section.pickup-cp .cp-list li .in .txt_area {
        width: 67%;
        /* padding-bottom: 20px; */
    }
    .page--service section.pickup-cp .cp-list li .in .img_area,
    .page--service section.pickup-cp .cp-list li .in .txt_area {
        /* display: block; */
        /* width: 50%; */
        height: auto;
        /* text-align: center; */
        margin: 0 auto;
    }
    .page--service section.pickup-cp .cp-list li .in .txt_area .title {
        padding-bottom: 5px;
    }
    .page--service section.pickup-cp .cp-list li .in .txt_area .txt {
        padding-top: 5px;
    }
    .page--service section.pickup-cp .cp-list li .in .img_area img {
        margin: 0 auto;
    }
    .page--service section.pickup-cp .cp-list li .in .txt_area {
        padding-left: 20px;
        line-height: 1.3;
    }
}



.page--service .section-content .thumb .show-small {
    display: none;
}

@media only screen and (max-width: 640px) {
    .page--service .section-content .thumb .show-small {
        display: inherit;
    }
}
@media only screen and (max-width: 767px) {
    .page--service .section-content .thumb .hide-small {
        display: inherit;
    }
}
@media only screen and (max-width: 640px) {
    .page--service .section-content .thumb .hide-small {
        display: none;
    }
}

.page--service .section-content .thumb {
  padding: 15px 0 50px;
}
.page--service .section-content .thumb .row {
    display: flex;
}

.page--service .section-content .thumb .headline {
  color: #7d7d7d;
  margin-bottom: 0;
}


.page--service .section-content .thumb-list.personal {
    width: calc(100% / 6 *4);
}
.page--service .section-content .thumb-list.business {
    width: calc(100% / 6 *2);
}


.page--service .section-content .thumb .headline .ttl_line,
.page--service .section-content .thumb-list li.wide .ttl_line {
  position: relative;
  text-align: center;
  color: #7d7d7d;
}
.page--service .section-content .thumb .headline .ttl_line span,
.page--service .section-content .thumb-list li.wide .ttl_line span {
  position: relative;
  z-index: 2;
  display: inline-block;
  /* margin: 0 2.5em; */
  padding: 0 1em;
  background-color: #fff;
  text-align: left;
}
.page--service .section-content .thumb .headline .ttl_line:before,
.page--service .section-content .thumb-list li.wide .ttl_line:before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fafafa, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #fafafa);
}
.page--service .section-content .thumb .headline .business {
    width: 100%;
  float: right;
}
.page--service .section-content .thumb .headline .personal {
  float: left;
  width: 100%;
}


@media only screen and (max-width: 768px) {
  .page--service .section-content .thumb {
    padding: 10px 0;
    background-color: #fff;
  }
  .page--service .section-content .thumb .row {
    padding: 0 20px;
    flex-direction: column;
  }
  .page--service .section-content .thumb .headline .personal {
    float: none;
    width: 100%;
    margin-bottom: 2em;
  }
  .page--service .section-content .thumb .headline .ttl_line span {
    background-color: #fff;
  }
}

.page--service .section-content .thumb-list {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
  border-right: 1px solid #e6e6e6;
}
.page--service .section-content .thumb-list:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 768px) {
  .page--service .section-content .thumb-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page--service .section-content .thumb-list.personal,
  .page--service .section-content .thumb-list.business {
      width: 100%;
  }
}

.page--service .section-content .thumb-list li {
  border-left: 1px solid #e6e6e6;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
  width: calc(100% / 6);
  float: left;
  position: relative;
  padding: 0 10px;
}
.page--service .section-content .thumb-list.personal li {
    width: 25%;
}
.page--service .section-content .thumb-list.business li {
    width: 50%;
}

@media only screen and (max-width: 768px) {
  .page--service .section-content .thumb-list li {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    width: 50%;
    text-align: center;
    padding: 10px;
    margin: 0 0 10px;
    position: relative;
  }
  .page--service .section-content .thumb-list.personal li {
      width: 50%;
  }
  .page--service .section-content .thumb-list li.wide {
    width: 100%;
  }
  .page--service .section-content .thumb-list li img {
    /* height: 50px; */
    width: auto;
    max-width: 110px;
  }
  .page--service .section-content .thumb-list li.wide img {
    max-width: 50%;
    max-width: 110px;
  }
}

.page--service .section-content .thumb-list li:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  .page--service .section-content .thumb-list li:hover {
    opacity: 1;
  }
}



.page--service .section-content .thumb-list li .sub {
  position: absolute;
  bottom: -2.5em;
  left: 0;
  width: 100%;
  text-align: center;
    background: -webkit-linear-gradient(left, rgba(116, 116, 116,0) 0%,rgba(116, 116, 116,0.45) 9%,rgba(116, 116, 116,1) 20%,rgba(116, 116, 116,1) 40%,rgb(116, 116, 116) 80%,rgba(116, 116, 116,0.45) 91%,rgba(116, 116, 116,0) 100%);
    background: linear-gradient(to right, rgba(116, 116, 116, 0) 0%,rgba(116, 116, 116,0.45) 9%,rgba(116, 116, 116,1) 20%,rgba(116, 116, 116,1) 40%,rgba(116, 116, 116,1) 80%,rgba(116, 116, 116,0.45) 91%,rgba(116, 116, 116,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a08f59', endColorstr='#009e8d57',GradientType=1 );
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .page--service .section-content .thumb-list li .sub {
    bottom: inherit;
    top: -1em;
    left: calc(50% - 65px);
    width: 130px;
    font-size: 11px;
  }
}


.page--service .section-content .thumb-list li .more {
    display: inline-block;
    background-color: #969FA5;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1;
    padding: 10px 0;
}

@media only screen and (max-width: 768px) {
    .page--service .section-content .thumb-list li .more {
        font-size: 1.0rem;
        margin: 10px auto 0;
        display: block;
        max-width: 150px;
    }
}





/* 
.page--card .section-hero {
    padding-top: 30px;
}

@media only screen and (max-width: 767px) {
    .page--card .section-hero {
        padding-top: 0;
    }
}

.page--card .section-comparison .headline {
    margin-bottom: 25px;
}

.page--card .section-flow .headline {
    margin-bottom: 0;
}

.page--card .section-flow .headline .lead {
    margin: 2em 0;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .headline .lead {
        margin: 2em;
    }
}

.page--card .section-flow .panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 158px;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .panel {
        display: block;
        height: auto;
    }
}

.page--card .section-flow .panel .img {
    background-color: #D2D2D2;
    width: 210px;
    background-repeat: no-repeat;
    background-position: 68% 50%;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .panel .img {
        margin: 0 auto;
        background-position: 64% 50%;
        background-size: 60px auto;
        position: relative;
    }
}

.page--card .section-flow .panel .img .num {
    background-color: #2E2E2E;
    height: 100%;
    width: 50px;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    font-size: 2.5rem;
    padding-top: 60px;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .panel .img .num {
        padding: 50px 0;
    }
}

.page--card .section-flow .panel .txt {
    background-color: #fff;
    padding: 35px 30px 0;
    width: calc(100% - 210px);
}

@media only screen and (min-width: 768px) {
    .page--card .section-flow .step {
        background-color: #FFF;
    }

    .page--card .section-flow .panel {
        display: table;
    }

    .page--card .section-flow .panel&gt;div {
        display: table-cell;
    }

    .page--card .section-flow .panel .txt {
        padding: 40px 30px;
    }

    .page--card .section-flow .panel .img .num {
        position: absolute;
        top: 0;
    }

    .page--card .section-flow .step-4 .panel .img .num {
        padding-top: 85px;
    }
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .panel .txt {
        width: auto;
        padding: 15px 15px 0;
    }
}

.page--card .section-flow .panel .txt dt {
    font-size: 2.4rem;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .panel .txt dt {
        font-size: 2.2rem;
        text-align: center;
    }
}

.page--card .section-flow .panel .txt dd {
    margin-top: 1em;
}

.page--card .section-flow .step {
    position: relative;
    margin-bottom: 40px;
}

.page--card .section-flow .step em {
    font-style: normal;
    color: #ff0000;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .step {
        background-color: #fff;
        padding: 25px 0;
    }
}

.page--card .section-flow .next:after {
    position: absolute;
    display: block;
    margin: 0 auto;
    text-align: center;
    bottom: -50px;
    left: 50%;
    margin-left: -21px;
    content: " ";
    width: 0;
    height: 0;
    border: 21px solid transparent;
    border-top: 18px solid #2E2E2E;
}

.page--card .section-flow .step-1 .img {
    background-image: url(../images_v3/card/icon-pc.png);
}

.page--card .section-flow .step-2 .img {
    background-image: url(../images_v3/card/icon-phone.png);
}

.page--card .section-flow .step-3 .img {
    background-image: url(../images_v3/card/icon-mail.png);
}

.page--card .section-flow .step-4 .panel {
    height: auto;
}

.page--card .section-flow .step-4 .panel .txt {
    padding-bottom: 35px;
}

.page--card .section-flow .step-4 .img {
    background-image: url(../images_v3/card/icon-card.png);
}

.page--card .section-flow .more {
    text-align: center;
    font-size: 1.6rem;
    margin: 1.5em 0 2em;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .more {
        font-size: 1.4rem;
    }
}

.page--card .section-flow .more a {
    text-decoration: underline;
}

.page--card .section-flow .more a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .page--card .section-flow .more a:hover {
        text-decoration: underline;
    }
}

.page--card .section-hero .headline {
    margin-bottom: 0;
    height: 150px;
}

@media only screen and (max-width: 767px) {
    .page--card .section-hero .content {
        height: auto;
        padding: 30px 0;
    }
}

.page--card .section-hero .section-content {
    padding: 0;
}

.page--card .section-hero .slider .slide {
    border: 1px solid #ccc;
}

.page--card .section-hero .thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0 0;
}

.page--card .section-hero .thumb li {
    max-width: 175px;
    padding: 0 25px;
    border-left: 1px solid #ccc;
    cursor: pointer;
}

.page--card .section-hero .thumb li:first-child {
    border-left: none;
}

.page--card .section-hero .thumb li span {
    display: block;
    border: 1px solid #ccc;
}




.page--card .card_t_headline,
.page--card .card_t_headline .line_none {
  border: none;
}
.page--card th.line_none2 {
  border-top: none;
}
.page--card .card_t_headline th.line_none {
  border-right: 1px #eaeaea solid;
} */


/* 

.card_t_headline .ttl_line {
  position: relative;
  text-align: center;
  color: #7d7d7d;
}
.card_t_headline .ttl_line span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  background-color: #fafafa;
  text-align: left;
}
.card_t_headline .ttl_line span {
  background-color: #fff;
  margin: 0;
}
.card_t_headline .ttl_line:before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fafafa, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #d0d0d0, #fafafa);
}
.card_t_headline,
.card_t_headline .line_none {
  border: none;
}
th.line_none2 {
  border-top: none;
}
.card_t_headline th.line_none {
  border-right: 1px #eaeaea solid;
} */








/* 

#pagetop {
    position: fixed;
    z-index: 9999;
    display: none;
    right: 0px;
    bottom: 0px;
}

@media only screen and (max-width: 767px) {
    #pagetop {
        right: 10px;
        bottom: 10px;
        display: none !important;
    }
}

#pagetop a {
    display: block;
    width: 56px;
    height: 56px;
    background-image: url(../img/common/pagetop.png);
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    #pagetop a {
        width: 40px;
        height: 40px;
    }
}

#pagetop.pinned {
    position: fixed;
}

.footer {
    padding: 60px 60px 0;
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 20px 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer__company .row {
        padding: 0;
    }
}

.footer__company .fc-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .footer__company .fc-info {
        position: relative;
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .footer__company .fc-info__logo {
        position: absolute;
        top: 0;
        left: 0;
    }
}

.footer__company .fc-info__leagal {
    font-size: 1.0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}




@media only screen and (min-width: 768px) {
    .footer__company .fc-info {
        display: block;
    }

    .footer__company .fc-info:after {
        content: "";
        display: table;
        clear: both;
    }

    .footer__company .fc-info&gt;div.fc-info__logo {
        float: left;
        padding-top: 18px;
    }

    .footer__company .fc-info&gt;div.fc-info__leagal {
        float: right;
    }

    .footer__company .fc-info__leagal {
        display: block;
    }

    .footer__company .fc-info__leagal:after {
        content: "";
        display: table;
        clear: both;
    }

    .footer__company .fc-info__leagal&gt;div.pmark {
        float: right;
        padding-top: 0;
    }

    .footer__company .fc-info__leagal&gt;div.copyright {
        float: left;
        padding-top: 7px;
    }
}




@media only screen and (max-width: 767px) {
    .footer__company .fc-info__leagal {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: block;
        text-align: right;
    }

    .footer__company .fc-info__leagal .pmark img {
        width: 60px;
    }
}

.footer__company .fc-info .copyright {
    text-align: right;
    padding-right: 2em;
    margin-bottom: 0;
}

.footer__company .fc-info .copyright__jp {
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .footer__company .fc-info .copyright {
        text-align: left;
    }
}

 .footer__nav {
    text-align: center;
    border-top: dotted #ccc 1px;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
    font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
    .footer__nav {
        font-size: 1.1rem;
    }

    .footer__nav .row {
        padding: 0;
    }
}

.footer__nav span {
    margin: 0 0.5em;
}

.footer__nav a {
    color: #4651c3;
    text-decoration: underline;
}

.footer__nav a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .footer__nav a:hover {
        text-decoration: underline;
    }
}
 */







/* scene */

#use-scene p {
    margin: 0;
}

#use-scene .ttl-box h1,
#use-scene .ttl-box h2,
#use-scene h3,
#use-scene h4 {
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

#use-scene h4 {
    font-size: 17px;
    font-weight: bold;
}





#use-scene .tabnav {
    text-align: center;
    padding: 65px 0;
  }
  
  @media only screen and (max-width: 767px) {
    #use-scene .tabnav {
      margin-top: 15px;
      padding: 20px 0;
    }
    #use-scene .tabnav .row {
      padding: 0 15px;
    }
  }
  
  #use-scene .tabnav__ctrl&gt;div{margin-bottom: 0 !important;}
  #use-scene .tabnav__ctrl&gt;div:last-child{float: right;}
  
  
  @media only screen and (max-width: 767px) {
    #use-scene .tabnav__ctrl {
      margin-top: 0px;
      margin-bottom: 2em;
      display: block;
    }
    #use-scene .tabnav__ctrl .cell {
      margin: 5px 0;
      width: 100%!important;
    }
  }
  
  #use-scene .tabnav__ctrl a {
    border: 1px solid #D3D3D3;
    border-bottom: 3px solid #D3D3D3;
    display: block;
    background-color: #fff;
    font-size: 1.8rem;
    padding: 22px 0;
    position: relative;
  }
  
  #use-scene .tabnav__ctrl a::after {
      position: absolute;
      top: -3px;
      bottom: 0;
      margin: auto;
      content: "";
      vertical-align: middle;
      right: 8%;
      width: 10px;
      height: 10px;
      border-top: 1px solid;
      border-right: 1px solid;
      -ms-transform: rotate(135deg);
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
  }
  
  @media only screen and (max-width: 767px) {
    #use-scene .tabnav__ctrl a {
      font-size: 1.4rem;
      padding: 1em 0;
    }
  }
  
  #use-scene .tabnav__ctrl a:hover {
    border: 1px solid #000 !important;
    color: #000 !important;
    font-weight: bold;
  }
  
  #use-scene .tabnav__ctrl {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #use-scene .tabnav__ctrl .cell{
      width: 48%;
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
  }
  






#use-scene .section .headline__title {
    margin-bottom: 40px;
}

#use-scene .section .headline__title:after {
    display: none;
}







#use-scene .section .section-content .everyday .ttl-box {
    background: url(../../../../amex/images/scene/everyday-bg.jpg) center right no-repeat #f1f1f1;
}

#use-scene .section .section-content .spot .ttl-box {
    background: url(../../../../amex/images/scene/spot-bg.jpg) center right no-repeat #f1f1f1;
}

#use-scene .section .section-content .tax-pay .ttl-box {
    background: url(../../../../amex/images/scene/tax_pay-bg.jpg) center right no-repeat #f1f1f1;
}

#use-scene .section .section-content .expense-pay .ttl-box {
    background: url(../../../../amex/images/scene/expense_pay-bg.jpg) center right no-repeat #f1f1f1;
}

#use-scene .section .section-content .content .ttl-box {
    background-size: cover;
    text-align: center;
    padding: 80px 0 100px;
}

#use-scene .section .section-content .content .ttl-box h3 {
    font-size: 28px;
}

#use-scene .section .section-content .content .ttl-box a {
    font-size: 13px;
    color: #fff;
    border-radius: 20px;
    background: #7e8fa8;
    display: inline-block;
    position: relative;
    padding: 5px 25px;
    margin-top: 20px;
}

#use-scene .section .section-content .content .ttl-box a:after {
    position: absolute;
    top: -3px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-right: 1px solid;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#use-scene .section .section-content .content .item-area {
    padding: 40px 0 100px;
}

#use-scene .section .section-content .content .item-area .item-box {
    float: left;
    width: 22.7%;
    margin-right: 3%;
    height: 7.5em;
}

#use-scene .section .section-content .content .item-area .item-box:nth-child(4n) {
    margin-right: 0;
}

#use-scene .section .section-content .content .item-area .item-box:before {
    content: "";
    display: block;
    border-bottom: 1px solid #d2d2d2;
    margin: 10px 0;
}

#use-scene .section .section-content .content .item-area .item-box:nth-child(-n+4):before {
    display: none;
}
#use-scene .section .section-content .content .item-area .item-box h4.small-h4 {
    font-size: 18px;
}
#use-scene .section .section-content .content .item-area .item-box h4 a {
    position: relative;
    display: inline-block;
    padding-left: 0.5em;
    color: #2f3438;
}
#use-scene .section .section-content .content .item-area .item-box h4 a .under-line {
    box-shadow: inset 0 -1px #2f3438;
    padding-bottom: 3px;
}
#use-scene .section .section-content .content .item-area .item-box h4 a:before {
    content: '&gt;';
    font-size: 14px;
    display: inline;
    position: absolute;
    top: 5px;
    left: 0;
}

#use-scene #loader-bg {
    display: none;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(211,211,211,0.8);
  z-index: 1;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 200px;
  margin-top: -400px;
  margin-left: -200px;
  text-align: center;
  color: #000;
  z-index: 2;
}
#loader p {
    background: #7e8fa8;
    padding: 50px;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
}


#use-scene .section .section-content .content .item-area .item-box p {
    font-size: 12px;
    margin-top: 10px;
}

#use-scene .section .section-content .content .item-area .item-box p a {
    position: relative;
    display: inline-block;
    padding-left: 1em;
}
#use-scene .section .section-content .content .item-area .item-box p a:before {
    content: '&gt;';
    font-size: 12px;
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
}
#use-scene .section .section-content .content .item-area .item-box p a .under-line {
    box-shadow: inset 0 -2px #d2d2d2;
    padding-bottom: 3px;
}

#use-scene .section .section-content .content .item-area .item-box p .tabi {
    letter-spacing: -0.03em;
}

/* #use-scene .section .section-content .content .item-area .item-box p .red {
    color: #ff0000;
} */


#use-scene #section_02 .section-content {
    padding-bottom: 0;
}
#use-scene #section_02 .headline {
    margin-bottom: 0;
}

#use-scene .section .section-content .headline .simulation-title {
    font-size: 26px;
}

#use-scene .section .section-content .section-simulation .content .dl-simulation {
    background: #fff;
}

#use-scene .section .section-content .section-simulation .content .band {
    background: #7e8fa8;
    color: #fff;
    font-size: 22px;
    text-align: center;
    padding: 10px 0;
}

#use-scene .section .section-content .section-simulation .content .dd-simulation {
    padding: 20px;
}

#use-scene .section .section-content .section-simulation .content .inner-content {
    border: 1px solid #eaeaea;
}

#use-scene .section .section-content .section-simulation .content .inner-content:first-child {
    margin-bottom: 18px;
}

#use-scene .section .section-content .section-simulation .content .inner-content .inner-band {
    font-size: 15px;
    color: #222222;
    padding: 10px 18px;
    background: #f4f4f4;
    border-bottom: 1px solid #eaeaea;
}


#use-scene .section .section-content .section-simulation .content .inner-content .inner-band a {
    font-size: 12px;
    margin-left: 1em;
    border-bottom: 1px solid;
}







#use-scene .section .section-content .section-simulation .content .inner-content .price-form {
    padding: 10px;

}


#use-scene .section .section-content .section-simulation .content .inner-content .price-form .use-case {
    font-size: 14px;
    line-height: 18px;
    color: #222222;
    font-weight: bold;
    vertical-align: middle;
}


#use-scene .section .section-content .section-simulation .content .inner-content .price-form input,
#use-scene .section .section-content .section-simulation .content .inner-content .price-form .text-box {
    padding: 10px 14px;
    background-color: #F4F4F4;
    border: 1px solid #EAEAEA;
    width: 100%;
}

#use-scene .section .section-content .section-simulation .content .dd-simulation .total-btn {
    margin: 16px 0 0;
    text-align: center;
}

#use-scene .section .section-content .section-simulation .content .dd-simulation .total-btn a {
    color: #fff;
    padding: 8px;
    width: 80%;
    max-width: 300px;
    display: inline-block;
    background: #064380;
    font-size: 18px;
    border-radius: 10px;
}

#use-scene .sim-result {
    display: none;
    padding-top: 15px;
}

#use-scene .sim-result h5 {
    font-size: 16px;
    background-color: #98AAC6;
    color: #fff;
    font-weight: bold;
    padding: 0.5em 1em;

}

#use-scene .sim-result .block:not(:last-child) {
    margin-bottom: 20px;
}

#use-scene .sim-result table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;

}

#use-scene .sim-result th {
    width: 250px;
    background-color: #DCE2E9;
    font-weight: bold;
}

#use-scene .sim-result th,
#use-scene .sim-result td {
    padding: 0.75em 1em;
    border: 1px solid #EAEAEA;
}

#use-scene .sim-result .strong {
    color: #ff0000;
    font-size: 18px;
    font-weight: bold;
}

#use-scene .sim-result span.em {
    color: #ff0000;
}

#use-scene .sim-result span.small {
    font-size: 12px;
}

#use-scene .dl-simulation+.notes {
    font-size: 12px;
    margin-top: 1em;
}
#use-scene .dl-simulation+.notes:not(:target) {
    font-size: 10px\9;
}
@media all and (-ms-high-contrast: none) {
    #use-scene .dl-simulation+.notes {
        font-size: 10px;
    }
}

#use-scene .case {
    margin-bottom: 40px;
}

 #use-scene #js-mile-club {
    display: none;
 }

 #use-scene .sim-result .border_right_none span.small {
     display: none;
 }



@media only screen and (max-width: 900px) {
    #use-scene .section .section-content .content .ttl-box {
        background-position: 70% 50%;
    }

    #use-scene .section .section-content .content .item-area .item-box {
        width: 30%;
        margin-right: 3%;
        padding-bottom: 20px;
        height: 9em;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(4n) {
        margin-right: 3%;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(3n) {
        margin-right: 0;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(-n+4):before {
        display: block;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(-n+3):before {
        display: none;
    }

    #use-scene .sim-result span.small {
        display: block;
        white-space: normal;
        text-indent: -1em;
    }
    #use-scene .max_mile td:last-child {
        display: none;
    }
    #use-scene .sim-result .border_right_none span.small {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    #use-scene h4 {
        font-size: 1.7rem;
    }

    #use-scene .section .section-content .content .ttl-box {
        padding: 30px 0;
        background-position: 80% 50%;
    }

    #use-scene .section .section-content .content .ttl-box h3 {
        font-size: 2.2rem;
    }

    #use-scene .section .section-content .content .ttl-box a {
        margin-top: 10px;
    }

    #use-scene .section .section-content .content .item-area {
        padding: 40px 0 60px;
    }

    #use-scene .section .section-content .content .item-area .item-box {
        width: 47%;
        margin-right: 6%;
        height: auto;
        padding-bottom: 20px;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(3n) {
        margin-right: 6%;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(2n) {
        margin-right: 0;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(-n+3):before {
        display: block;
    }

    #use-scene .section .section-content .content .item-area .item-box:nth-child(-n+2):before {
        display: none;
    }


    #use-scene .section .section-content .headline .simulation-title {
        font-size: 14px;
    }


    #use-scene .section .section-content .section-simulation .row {
        padding: 0 5px;
    }


    #use-scene .section .section-content .section-simulation .content .inner-content .inner-band {
        font-size: 13px;
    }

    #use-scene .section .section-content .section-simulation .content .inner-content .price-form .use-case {
        font-size: 12px;
        margin-bottom: 0.25em;
    }

    #use-scene .section .section-content .section-simulation .content .dd-simulation {
        padding: 10px 5px;
    }

    #use-scene .everyday-total {
        display: block;
    }
    #use-scene .card-list {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
    }

     #use-scene .card-list li {
          width: 50%;
          padding: 10px 5px;
     }
     #use-scene .card-list li img {
         max-width: 180px;
         width: 100%;
     }
     #use-scene .card-list li input {
         display: block;
         margin: 5px auto 0;
     }


     #use-scene .dl-simulation+.notes {
      font-size: 10px;
      padding: 10px;
     }

     #use-scene .section .section-content .section-simulation .content .band {
        font-size: 15px;
     }
     #use-scene .sim-result th {
         width: 40%;
     }
}

#use-scene .sim-result .border_right_none {
    border-right: none;
    white-space: nowrap;
}

#use-scene .max_mile td:last-child {
    border-left: none;
    padding-left: 0;
}

@media only screen and (max-width: 900px) {
    #use-scene .sim-result .border_right_none {
        border-right: 1px solid #EAEAEA;
    }
}


#use-scene .notes + .lead{
    font-size: 1.2rem;
}
#use-scene .notes + .lead +.notes{
    margin-top: 0.3em;
}
@media only screen and (max-width: 767px) {
    #use-scene .notes + .lead{
        font-size: 1rem;
    }
}



@media only screen and (min-width: 768px) {




    #use-scene .section .section-content .section-simulation .content .inner-content .price-form:nth-child(even) {
        border-left: 1px solid #eaeaea;
    }

    #use-scene .section .section-content .section-simulation .content .inner-content .price-form {
        display: table;
    }

    #use-scene .section .section-content .section-simulation .content .inner-content .price-form&gt;* {
        display: table-cell;
    }




    #use-scene .section .section-content .section-simulation .content .inner-content .price-form {
        float: left;
    }

    #use-scene .section .section-content .section-simulation .content .inner-content .price-form,
    #use-scene .section .section-content .section-simulation .content .inner-content .price-form .use-case {
        width: 50%;
    }

    #use-scene .section .section-content .section-simulation .content .inner-content .grid:not(:last-child) {
        border-bottom: 1px solid #eaeaea;
    }


    #use-scene .section .section-content .section-simulation .content .inner-content .card-list {
      padding: 20px 0 10px 50px;
      width: 100%;
    }


    #use-scene .section .section-content .section-simulation .content .inner-content .card-list li {
        width: 16%;
        float: left;
        padding-right: 20px;
        text-align: center;
    }



    #use-scene .section .section-content .section-simulation .content .inner-content .select-list {
        padding: 50px 0 50px 50px;
        width: 100%;
      }

    #use-scene .section .section-content .section-simulation .content .inner-content .select-list li {
        float: left;
        padding-right: 50px;
    }

}



/* new-globalnav */
/*
.masthead {
    border-bottom: 1px solid #e6e6e6;
}
.masthead .content {
    margin-top: 0;
}

@media only screen and (min-width: 768px){
    .masthead .content {
        margin-top: 0;
    }
    .service .masthead .content {
        padding-top: 0;
    }
}
.masthead .brand-logo-desc {
    margin-bottom: 8px !important;
}
 .globalnav {
    padding: 0;
    margin-top: 0;
}
.globalnav.service {
    min-width: 0;
}
.globalnav .gn-list {
    margin: 0 auto;
    padding-left: 0;
    max-width: 980px;
    border-top: none;
}
.service .gn-list {
    border-bottom: none;
}

.globalnav .gn-list .gn-card {width: 25% !important;}
.globalnav .gn-list .gn-business {width: 18% !important;}
.globalnav .gn-list .gn-use-scene {width: 18% !important;}
.globalnav .gn-list .gn-service {width: 21% !important;}
.globalnav .gn-list .gn-faq {width: 18% !important;}

#use-scene .globalnav .gn-list .gn-use-scene a {
    background-color: #054380;
    color: #fff;
}
#use-scene .globalnav .gn-list .gn-use-scene a:after {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAMCAYAAABbayygAAAAb0lEQVQYlY3QQRXDMAwEUbsMTKEUQiEUQqEUTCFYQqEUQqEUEgi/F/VWP1nn0a40BR17yQYrPjixZHDDgQt9Jn0L+EDL4CfesbDNpPeAd7TH6OZSyq/6rrXe/6AltRB1hl7jgTNuWkfQa0pJgKnkL5x6jgI+//S1AAAAAElFTkSuQmCC);
} */


#use-scene #section_02 .section-content .external {
    text-align: center;
    padding: 70px 0 70px;
}
#use-scene #section_02 .section-content .external .extnav li {
    padding: 20px 10px 0;
    float: left;
    width: 16%;
}
#use-scene #section_02 .section-content .external h2 {
    font-size: 28px;
}
#use-scene #section_02 .section-content .external .extnav a {
    display: block;
    opacity: 1;
    -webkit-transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1);
}
#use-scene #section_02 .section-content .external .extnav a:hover {
    opacity: 0.8;
    transition: 0.3s;
}
#use-scene #section_02 .section-content .external .extnav .more {
    display: inline-block;
    background-color: #dd2b3c;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1;
    padding: 10px 0;
}

@media only screen and (max-width: 768px) {
    #use-scene #section_02 .section-content .external .extnav li {
        width: 50%;
    }
    #use-scene #section_02 .section-content .external .extnav li img {
        max-width: 180px;
        width: 100%;
    }
}



</pre></body></html>