@charset "UTF-8";
/** PC **/
@media screen and (min-width: 768px) {
  .btn-white {
    color: #1a1a1a;
    background-color: #ffffff;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-white:hover {
    color: #1a1a1a;
    background-color: #f5f5f5;
  }
  .btn-white:focus {
    color: #1a1a1a;
  }
  .btn-light-gray {
    color: #1a1a1a;
    background-color: #e9e9e9;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-light-gray:hover {
    color: #1a1a1a;
    background-color: #d1d1d1;
  }
  .btn-light-gray:focus {
    color: #1a1a1a;
  }
  .btn-dark {
    color: #ffffff;
    background-color: #333333;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-dark:hover {
    color: #ffffff;
    background-color: #000000;
  }
  .btn-dark:focus {
    color: #ffffff;
  }
  .btn-yellow {
    color: #1a1a1a;
    background-color: #f5be20;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-yellow:hover {
    color: #1a1a1a;
    background-color: #dba51f;
  }
  .btn-yellow:focus {
    color: #1a1a1a;
  }
  .btn-red {
    color: #ffffff;
    background-color: #df3e38;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-red:hover {
    color: #ffffff;
    background-color: #af3231;
  }
  .btn-red:focus {
    color: #ffffff;
  }
  .btn-maincolor {
    color: #ffffff;
    background-color: #317ec7;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-maincolor:hover {
    color: #ffffff;
    background-color: #2a6596;
  }
  .btn-maincolor:focus {
    color: #ffffff;
  }
  body,
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    min-width: 1120px;
  }
  /* Don't let the lead text change font-size. */
  .lead {
    font-size: 16px;
  }
  /* Finesse the page header spacing */
  .page-header {
    margin-bottom: 30px;
  }
  .page-header .lead {
    margin-bottom: 10px;
  }
  /* Non-responsive overrides
   *
   * Utilize the following CSS to disable the responsive-ness of the container,
   * grid system, and navbar.
   */
  /* Reset the container */
  .container {
    width: 1120px;
    padding: 0;
    max-width: none !important;
  }
  .container .navbar-header,
  .container .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  /* Always float the navbar header */
  .navbar-header {
    float: left;
  }
  /* Undo the collapsing navbar */
  .navbar-collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    visibility: visible !important;
  }
  .navbar-toggle {
    display: none;
  }
  .navbar-collapse {
    border-top: 0;
  }
  .navbar-brand {
    margin-left: -15px;
  }
  /* Always apply the floated nav */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding: 15px;
  }
  /* Redeclare since we override the float above */
  .navbar-nav.navbar-right {
    float: right;
  }
  /* Undo custom dropdowns */
  .navbar .navbar-nav .open .dropdown-menu {
    position: absolute;
    float: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-width: 0 1px 1px;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #333;
  }
  .navbar .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar .navbar-nav .open .dropdown-menu > .active > a,
  .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff !important;
    background-color: #428bca !important;
  }
  .navbar .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #999 !important;
    background-color: transparent !important;
  }
  /* Undo form expansion */
  .navbar-form {
    float: left;
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
  /* Copy-pasted from forms.less since we mixin the .form-inline styles. */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type=radio],
  .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
  /* Undo inline form compaction on small screens */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
  body {
    font-family: "hiragino kaku gothic pro", meiryo, helvetica, arial, "ms pgothic", sans-serif;
    font-size: 14px;
    line-height: 20px;
  }
  .caret {
    border-top: 4px dashed;
  }
  .modal {
    z-index: 1200;
  }
  .modal-header {
    padding-bottom: 0;
    border: none;
  }
  .btn {
    padding: 10px 12px;
  }
  .form-control {
    height: 40px;
  }
  .text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .row-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .row-height .col-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .row-height .col-top {
    vertical-align: top;
  }
  .row-height .col-middle {
    vertical-align: middle;
  }
  .row-height .col-bottom {
    vertical-align: bottom;
  }
  .row-height .col-lg-1, .row-height .col-lg-10, .row-height .col-lg-11, .row-height .col-lg-12, .row-height .col-lg-2, .row-height .col-lg-3, .row-height .col-lg-4, .row-height .col-lg-5, .row-height .col-lg-6, .row-height .col-lg-7, .row-height .col-lg-8, .row-height .col-lg-9, .row-height .col-md-1, .row-height .col-md-10, .row-height .col-md-11, .row-height .col-md-12, .row-height .col-md-2, .row-height .col-md-3, .row-height .col-md-4, .row-height .col-md-5, .row-height .col-md-6, .row-height .col-md-7, .row-height .col-md-8, .row-height .col-md-9, .row-height .col-sm-1, .row-height .col-sm-10, .row-height .col-sm-11, .row-height .col-sm-12, .row-height .col-sm-2, .row-height .col-sm-3, .row-height .col-sm-4, .row-height .col-sm-5, .row-height .col-sm-6, .row-height .col-sm-7, .row-height .col-sm-8, .row-height .col-sm-9, .row-height .col-xs-1, .row-height .col-xs-10, .row-height .col-xs-11, .row-height .col-xs-12, .row-height .col-xs-2, .row-height .col-xs-3, .row-height .col-xs-4, .row-height .col-xs-5, .row-height .col-xs-6, .row-height .col-xs-7, .row-height .col-xs-8, .row-height .col-xs-9 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .datepicker-dropdown {
    padding: 24px 24px 48px 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #f5f5f5 !important;
    /* フォント */
    /* 日付の余白 */
    /* 日にち */
  }
  .datepicker-dropdown .table-condensed {
    margin: 0 auto;
    font-size: 14px;
  }
  .datepicker-dropdown .table-condensed > tbody > tr > td, .datepicker-dropdown .table-condensed > tbody > tr > th, .datepicker-dropdown .table-condensed > tfoot > tr > td, .datepicker-dropdown .table-condensed > tfoot > tr > th, .datepicker-dropdown .table-condensed > thead > tr > td, .datepicker-dropdown .table-condensed > thead > tr > th {
    padding: 8px 12px !important;
  }
  .datepicker-dropdown thead {
    /* 前月/翌月リンク */
    /* 曜日 */
  }
  .datepicker-dropdown thead tr:nth-child(2) .prev, .datepicker-dropdown thead tr:nth-child(2) .next {
    font-size: 24px;
    font-weight: normal;
  }
  .datepicker-dropdown thead tr:nth-child(3) {
    border: 1px solid #cccccc;
  }
  .datepicker-dropdown thead tr:nth-child(3) .dow {
    font-weight: normal;
    border-left: 1px solid #cccccc;
    background-color: #f5f5f5;
  }
  .datepicker-dropdown thead tr:nth-child(3) .dow:first-child {
    border-left: 0;
  }
  .datepicker-dropdown tbody {
    border: 1px solid #cccccc;
  }
  .datepicker-dropdown tbody tr {
    border-bottom: 1px solid #cccccc;
  }
  .datepicker-dropdown tbody tr:last-child {
    border-bottom: none;
  }
  .datepicker-dropdown tbody tr td {
    color: #333333 !important;
    border-left: 1px solid #cccccc !important;
    background-color: #ffffff !important;
  }
  .datepicker-dropdown tbody tr td.disabled {
    color: #bebebe !important;
  }
  .datepicker-dropdown tbody tr td.new {
    color: #ffffff !important;
  }
  .datepicker-dropdown tbody tr td.old {
    color: #ffffff !important;
  }
  .datepicker-dropdown tbody tr .day-red {
    color: #ff0000 !important;
  }
  .datepicker-dropdown tbody tr .day-blue {
    color: #1000ff !important;
  }
  /* アクティブ日にち */
  .datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active.highlighted:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .open > .dropdown-toggle.datepicker table tr td.active, .open > .dropdown-toggle.datepicker table tr td.active.highlighted {
    color: #ffffff !important;
    background-color: #555555 !important;
    border-radius: 0 !important;
  }
  .datepicker table tr td.active.active.old, .datepicker table tr td.active.highlighted.active.old, .datepicker table tr td.active.highlighted:active.old, .datepicker table tr td.active.highlighted:hover.old, .datepicker table tr td.active:active.old, .datepicker table tr td.active:hover.old, .open > .dropdown-toggle.datepicker table tr td.active.old, .open > .dropdown-toggle.datepicker table tr td.active.highlighted.old {
    color: #ffffff !important;
    text-shadow: none !important;
    background-color: #ffffff !important;
  }
  .date-picker-wrapper {
    padding: 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #f5f5f5 !important;
    margin-left: 240px;
  }
  .date-picker-wrapper .drp_top-bar {
    display: none !important;
  }
  .date-picker-wrapper .date-range-length-tip {
    display: none !important;
  }
  .date-picker-wrapper .month-wrapper table {
    width: 220px !important;
  }
  .date-picker-wrapper .month-wrapper table th {
    font-size: 14px;
  }
  .date-picker-wrapper .month-wrapper table .day {
    font-size: 14px !important;
  }
  .date-picker-wrapper .month-wrapper table .day-red {
    color: #ff0000 !important;
  }
  .date-picker-wrapper .month-wrapper table .day-blue {
    color: #1000ff !important;
  }
  .date-picker-wrapper .month-wrapper table .invalid {
    color: #ccc !important;
  }
  .date-picker-wrapper .month-wrapper table .real-today {
    background-color: transparent !important;
  }
  #main-content {
    min-height: 768px;
  }
  /**パンくず用のスタイル*/
  .bread-crumb-frame {
    display: flex;
    flex-wrap: wrap;
    margin: 12px 5px;
    padding-inline-start: 0;
  }
  .bread-crumb-frame li {
    display: flex;
    font-size: 11px;
  }
  .bg-white {
    background-color: #ffffff;
  }
  .bg-gray {
    background-color: #e9e9e9;
  }
  /**トラベル共通デザインボタン*/
  .travel-button-orange {
    background-color: #ffd20a;
    cursor: pointer;
  }
  .travel-button-orange:hover {
    background-color: rgba(255, 210, 10, 0.7);
  }
  .travel-button-blue {
    background-color: #3683d8;
    cursor: pointer;
  }
  .travel-button-blue:hover {
    opacity: 0.7;
  }
  .travel-button-light-blue {
    background-color: #3683d8;
    cursor: pointer;
    box-shadow: 0 2px 6px 1px rgba(54, 131, 216, 0.5);
    color: #fff;
  }
  .travel-button-light-blue:hover {
    background-color: rgba(54, 131, 216, 0.15);
    color: #3683d8;
  }
  .travel-button-white {
    border: solid 1px #3683d8;
    cursor: pointer;
  }
  .travel-button-white:hover {
    background-color: rgba(54, 131, 216, 0.1);
  }
  #main-header {
    position: relative;
    z-index: 1040;
    margin-bottom: 20px;
  }
  #main-header .navbar {
    background-color: #ffffff;
    border: none;
    margin: 0;
    height: 64px;
    border-radius: 0;
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.2);
    width: 100%;
  }
  #main-header .navbar-header {
    padding: 12px 0 0 0;
  }
  #main-header .navbar-brand {
    padding: 0;
    margin: 0;
  }
  #main-header .navbar-brand img:lang(ja) {
    width: 226px;
  }
  #main-header .container {
    position: relative;
  }
  #main-header .container .lang-sw {
    position: absolute;
    z-index: 1041;
    top: 20px;
    right: 0;
  }
  #main-header .container .lang-sw .lang-menu {
    position: absolute;
    background-color: #ffffff;
    width: 144px;
    padding: 6px 24px;
    display: none;
    top: 30px;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.18);
    border: solid 1px #cccccc;
  }
  #main-header .container .lang-sw .lang-menu .lang-list {
    display: block;
    font-size: 14px;
    margin: 10px 0;
  }
  #main-header .container .lang-sw .lang-menu .lang-list a {
    color: #333;
  }
  #main-header .container .lang-sw .lang-menu .lang-list a:hover {
    color: #337EC7;
  }
  #main-header .container .lang-sw .lang-icon {
    margin: -2px auto;
  }
  #main-header .container .lang-sw .lang-select-icon {
    margin: 2px auto;
  }
  #main-header .container .lang-sw .select-lang {
    top: 14px;
    color: #000;
    cursor: pointer;
  }
  /**
   * Booking
   */
  .l-footer {
    width: 100%;
    margin-top: 80px;
  }
  .l-footer-pass__title {
    margin: 0 0 16px 0;
    font-size: 20px;
  }
  .l-footer-pass__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 64px;
  }
  .l-footer-pass__grid .product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  .l-footer-pass__grid .product-card--link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .l-footer-pass__grid .product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
  }
  .l-footer-pass__grid .product-content {
    padding: 12px;
  }
  .l-footer-pass__grid .product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    min-height: 36px;
    line-height: 1.3;
  }
  .l-footer-pass__grid .product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
  }
  .l-footer-app {
    width: 600px;
    height: 415px;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    margin: auto;
  }
  .l-footer-app__title {
    width: 287px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 18px;
  }
  .l-footer-app__desc {
    width: 287px;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
  }
  .l-footer-app__link {
    width: 287px;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .l-footer-app__itunes {
    width: 50%;
    height: 55px;
    display: flex;
    margin: 0;
  }
  .l-footer-app__itunes img {
    margin: auto;
  }
  .l-footer-app__google {
    width: 50%;
    height: 55px;
    display: flex;
    margin: 0;
  }
  .l-footer-app__google img {
    margin: auto;
  }
  .l-footer-app__image {
    margin: 0;
  }
  .l-footer-app-qr {
    width: 238px;
    display: flex;
    text-align: center;
    height: 100px;
    border-radius: 4px;
    background-color: #f0f0f0;
    margin: auto;
  }
  .l-footer-app-qr img {
    margin: auto;
  }
  .l-footer-sitemap {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .l-footer-area {
    width: 1140px;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }
  .l-footer-area__title {
    width: 1140px;
    display: flex;
    margin: 40px auto 8px auto;
    font-family: "din-condensed", "游ゴシック体";
    font-size: 22px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
  }
  .l-footer-area__title:lang(ja) {
    font-size: 16px;
  }
  .l-footer-area__list {
    width: 50%;
    margin: 0;
  }
  .l-footer-area__term {
    display: flex;
    align-items: center;
    width: 100%;
    height: 20px;
    opacity: 0.6;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-family: "SFProText-Bold", "游ゴシック体";
    margin: 0 0 12px 0;
  }
  .l-footer-area__term:lang(ja) {
    font-size: 14px;
  }
  .l-footer-area__term:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    margin: 0 54px 0 4px;
  }
  .l-footer-area__desc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    opacity: 0.6;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-family: "SFProText-Bold", "游ゴシック体";
    margin: 0 0 12px 0;
  }
  .l-footer-area__desc:lang(ja) {
    font-size: 14px;
  }
  .l-footer-area__item {
    white-space: nowrap;
    height: 16px;
    display: flex;
    align-items: center;
    margin: 0 26px 16px 0;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-family: "SFProText-Regular", "游ゴシック体";
  }
  .l-footer-area__item:lang(ja) {
    font-weight: 500;
  }
  .l-footer-area__item a {
    text-decoration: none;
  }
  .l-footer-guide {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    align-content: space-between;
    width: 1140px;
    height: 199px;
  }
  .l-footer-guide__title {
    width: 570px;
    height: 22px;
    display: flex;
    margin: 40px auto 8px auto;
    font-family: "din-condensed", "游ゴシック体";
    font-size: 22px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
  }
  .l-footer-guide__title:lang(ja) {
    font-size: 16px;
  }
  .l-footer-guide__area {
    display: flex;
    width: 570px;
    margin: 0 auto;
  }
  .l-footer-guide__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    list-style-type: none;
    padding: 0;
  }
  .l-footer-guide__item {
    font-family: "SFProText-Regular", "游ゴシック体";
    margin: 0 26px 16px 0;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
  }
  .l-footer-guide__item:lang(ja) {
    font-size: 14px;
    font-weight: 500;
  }
  .l-footer-guide__item a {
    text-decoration: none;
  }
  .l-footer-other {
    /*
    height: 96px;
    */
    display: flex;
    justify-content: center;
  }
  .l-footer-links {
    position: relative;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    width: 1140px;
    height: 100px;
    margin: 24px 0 8px;
  }
  .l-footer-links__list {
    display: flex;
    align-items: center;
    width: 50%;
    margin: 0 0 12px;
  }
  .l-footer-links__term {
    min-width: 84px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    border-style: solid;
    border-width: 1px;
    text-align: center;
  }
  .l-footer-links__desc {
    height: 14px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
  }
  .l-footer-links__desc:not(:first-of-type) {
    padding-left: 10px;
    border-left: solid 1px #ffffff;
  }
  .l-footer-links__desc a {
    text-decoration: none;
  }
  .l-footer-links__table {
    width: 50%;
  }
  .l-footer-links__table-column1 {
    width: 105px;
  }
  .l-footer-links__table-column2 {
    width: 90px;
  }
  .l-footer-links__table-column3 {
    width: 130px;
  }
  .l-footer-links__table-column4 {
    width: 170px;
  }
  .l-footer-links__area {
    display: flex;
    width: 50%;
  }
  .l-footer-info {
    text-decoration: none;
    height: 16px;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    margin-right: 20px;
  }
  .l-footer-copyright__ja {
    position: absolute;
    white-space: nowrap;
    right: 0;
    bottom: 0;
    width: 25%;
    height: 16px;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    margin: 0 30px;
    text-align: right;
  }
  .l-footer-copyright__en {
    position: absolute;
    white-space: nowrap;
    right: 165px;
    bottom: 20px;
    width: 25%;
    height: 16px;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    margin: 0 30px;
    text-align: right;
  }
  .l-footer-sns {
    width: 76px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 35px 0 0;
  }
  /**
   * 各商材
   */
  #travel-sales-footer {
    padding: 40px 0;
    margin-top: 40px;
    color: #ffffff;
    background-color: #333333;
  }
  #travel-sales-footer .travel-link-row .area-col,
  #travel-sales-footer .travel-link-row .category-col,
  #travel-sales-footer .travel-link-row .navitime-col {
    height: 312px;
  }
  #travel-sales-footer .travel-link-row .area-col.not-left,
  #travel-sales-footer .travel-link-row .category-col.not-left,
  #travel-sales-footer .travel-link-row .navitime-col.not-left {
    border-left: 1px solid #e2e2e2;
  }
  #travel-sales-footer .travel-link-row .area-col .col-xs-6,
  #travel-sales-footer .travel-link-row .area-col .col-xs-12,
  #travel-sales-footer .travel-link-row .category-col .col-xs-6,
  #travel-sales-footer .travel-link-row .category-col .col-xs-12,
  #travel-sales-footer .travel-link-row .navitime-col .col-xs-6,
  #travel-sales-footer .travel-link-row .navitime-col .col-xs-12 {
    padding: 0;
  }
  #travel-sales-footer .travel-link-row .function-col {
    padding: 0 30px;
  }
  #travel-sales-footer .travel-link-row .footer-title {
    margin: 0;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    font-weight: bold;
  }
  #travel-sales-footer .travel-link-row .footer-title.lower {
    padding-top: 20px;
    display: inline-block;
  }
  #travel-sales-footer .travel-link-row ul {
    margin: 0;
    padding: 0;
  }
  #travel-sales-footer .travel-link-row ul li {
    list-style: none;
  }
  #travel-sales-footer .navitime-link-row {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #travel-sales-footer a {
    color: #ffffff;
  }
  #travel-sales-footer .btn {
    width: 100%;
    margin: 5px 0;
    border-color: #e2e2e2;
  }
  #travel-sales-footer .language-frame {
    margin: 20px 0;
  }
  #travel-sales-footer .language-frame .language-list-ul {
    list-style: none;
    margin: 0;
  }
  #travel-sales-footer .language-frame .language-list-ul .language-list-li {
    display: inline-block;
    padding: 0 16px;
  }
  #travel-sales-footer .language-frame .language-list-ul .language-list-li.separate {
    border-right: 1px solid #fff;
  }
  #travel-sales-footer .provider-frame {
    padding-top: 20px;
  }
  #travel-sales-footer .provider-frame .provider-outline {
    padding-left: 260px;
  }
  #travel-sales-footer .provider-frame .provider-outline .provider-area {
    width: 600px;
    border: 1px solid #ccc;
    padding: 20px 0 0 0;
    margin-top: 6px;
  }
  #travel-sales-footer .provider-frame .provider-outline .provider-area .provider-list {
    list-style: none;
  }
  #travel-sales-footer .provider-frame .provider-outline .provider-area.jr {
    background-color: #ffffff;
    color: #333333;
  }
  #travel-sales-footer .provider-frame .provider-outline .provider-area.jr a {
    color: #333333;
  }
  #travel-sales-footer .provider-frame .provider-outline .provider-area.jr .company-logo {
    margin: 8px 0;
  }
  #travel-sales-footer .provider-frame .provider-outline .provider-area.jr .company-logo.air-trip {
    margin-right: 16px;
  }
  #webchat-content {
    z-index: 2000;
    position: absolute;
  }
  #webchat-content #webchat-container {
    z-index: 2000;
    display: none;
    width: 500px;
    height: 500px;
    position: fixed;
    bottom: 10px;
    right: 1%;
    border: solid 2px #e5eff9;
    border-radius: 10px 10px 0px 0px;
    background-color: white;
  }
  #webchat-content #webchat-container img.webchat-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 35%;
  }
  #webchat-content #webchat-container button.webchat-btn-close {
    color: #fff;
    background-color: #ffffff;
    border: none;
    height: 50px;
  }
  #webchat-content #webchat-container img.webchat-btn-ic-close-arrow {
    display: none;
  }
  #webchat-content #webchat-container img.webchat-btn-ic-close {
    height: 23px;
    display: block;
  }
  #webchat-content #webchat-btn-container {
    display: block;
    position: fixed;
    bottom: 60px;
    right: 1%;
  }
  #webchat-content #webchat-btn-container .webchat-btn-small {
    display: none;
  }
  #webchat-content #webchat-btn-container button.webchat-btn-open {
    color: #fff;
    background-color: #3683d8;
  }
  #webchat-content #webchat-btn-container button.webchat-btn-open .webchat-notice {
    margin-right: 8px;
    margin-bottom: 3px;
  }
  #webchat-content #webchat-btn-container button.webchat-btn-open:hover {
    color: #fff;
    background-color: #72a8e3;
  }
  .flights-section .tab-frame .title-block {
    width: 524px;
  }
  .flights-section .tab-frame .title-block .title {
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 40px;
  }
  .flights-section .tab-frame .tab-block {
    background-color: #cccccc;
  }
  .flights-section .tab-frame .tab-block .nav-tabs {
    border: 1px solid #cccccc;
    border-bottom: none;
  }
  .flights-section .tab-frame .tab-block .nav-tabs li {
    border-right: 1px solid #ccc;
  }
  .flights-section .tab-frame .tab-block .nav-tabs li.active a {
    height: 40px;
    color: #333333;
    font-weight: 600;
    border: none;
    line-height: 37px;
    border-top: 3px solid #337EC7;
    border-radius: 0;
    background-color: #ffffff;
  }
  .flights-section .tab-frame .tab-block .nav-tabs li a {
    margin-right: 0;
    padding: 0;
    height: 40px;
    line-height: 40px;
    color: #317EC7;
    font-size: 12px;
    text-align: center;
    border-top: none;
    border-radius: 0;
    background-color: #F5F5F5;
    border-bottom: 1px solid #ccc;
  }
  .flights-section .tab-frame .tab-block .nav-tabs li a:hover {
    background-color: #e9e9e9;
    color: #2a6596;
    text-decoration: underline;
  }
  .flights-section .tab-frame .tab-block .nav-tabs li:last-child {
    border-right: none;
  }
  .flights-section .title-frame {
    padding: 20px 0 10px 0;
    line-height: 1;
    border-bottom: 1px solid #ccc;
    color: #333;
    font-size: 13px;
    font-weight: bold;
  }
  .flights-section .title-frame small {
    font-size: 11px;
    font-weight: normal;
  }
  .flights-section .flight-contents {
    display: none;
  }
  .flights-section .flight-contents .flight-frame {
    cursor: pointer;
    padding: 0 0 0 30px;
    border-bottom: 1px solid #cccccc;
    background-color: #ffffff;
  }
  .flights-section .flight-contents .flight-frame:hover {
    background-color: #F2F8FD;
  }
  .flights-section .flight-contents .flight-frame:hover .link-frame .link {
    background-color: #2a6596;
  }
  .flights-section .flight-contents .flight-frame.selected {
    box-shadow: 0 0 0 2px #317EC7 inset;
  }
  .flights-section .flight-contents .flight-frame.selected .link-frame .link {
    color: #ffffff;
    background-color: #2a6596;
  }
  .flights-section .flight-contents .flight-frame .logo {
    padding: 4px 8px;
    height: 30px;
    width: 86px;
    border: 1px solid #E2E2E2;
    border-radius: 4px;
    vertical-align: text-bottom;
  }
  .flights-section .flight-contents .flight-frame .flight-number {
    font-size: 14px;
    margin-left: -20px;
  }
  .flights-section .flight-contents .flight-frame .schedule {
    font-size: 16px;
    font-weight: 600;
    margin-left: -4px;
  }
  .flights-section .flight-contents .flight-frame .schedule .time-arrow {
    font-size: 17px;
  }
  .flights-section .flight-contents .flight-frame .price-block {
    padding: 14px 38px 14px 0;
    font-size: 17px;
    font-weight: 600;
    text-align: right;
    color: #DF3E38;
    width: 160px;
  }
  .flights-section .flight-contents .flight-frame .price-block .unit {
    margin-left: 1px;
    font-size: 13px;
    font-weight: bold;
  }
  .flights-section .flight-contents .flight-frame .fare-class {
    padding-left: 16px;
    font-size: 13px;
    width: 146px;
  }
  .flights-section .flight-contents .flight-frame .link-frame {
    width: 147px;
  }
  .flights-section .flight-contents .flight-frame .link-frame .link {
    margin: 0 auto;
    width: 92px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    background-color: #337EC7;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
  }
  .loader-frame {
    display: none;
    padding: 24px 0;
    border-bottom: 1px solid #cccccc;
    background-color: #ffffff;
  }
  .loader-frame .loader {
    margin: 0 auto 16px auto;
    letter-spacing: 0.5px;
    border: 4px solid #e1e1e1;
    border-top: 4px solid #337EC7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .error-frame {
    display: none;
    padding: 20px 10px;
    color: #333333;
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid #cccccc;
    background-color: #ffffff;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  #flight-salse-footer {
    padding: 40px 0;
    color: #ffffff;
    background-color: #333333;
  }
  #flight-salse-footer .travel-link-row .area-col,
  #flight-salse-footer .travel-link-row .category-col,
  #flight-salse-footer .travel-link-row .navitime-col {
    height: 312px;
  }
  #flight-salse-footer .travel-link-row .area-col.not-left,
  #flight-salse-footer .travel-link-row .category-col.not-left,
  #flight-salse-footer .travel-link-row .navitime-col.not-left {
    border-left: 1px solid #e2e2e2;
  }
  #flight-salse-footer .travel-link-row .area-col .col-xs-6,
  #flight-salse-footer .travel-link-row .area-col .col-xs-12,
  #flight-salse-footer .travel-link-row .category-col .col-xs-6,
  #flight-salse-footer .travel-link-row .category-col .col-xs-12,
  #flight-salse-footer .travel-link-row .navitime-col .col-xs-6,
  #flight-salse-footer .travel-link-row .navitime-col .col-xs-12 {
    padding: 0;
  }
  #flight-salse-footer .travel-link-row .function-col {
    padding: 0 30px;
  }
  #flight-salse-footer .travel-link-row .footer-title {
    margin: 0;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    font-weight: bold;
  }
  #flight-salse-footer .travel-link-row .footer-title.lower {
    padding-top: 20px;
    display: inline-block;
  }
  #flight-salse-footer .travel-link-row ul {
    margin: 0;
    padding: 0;
  }
  #flight-salse-footer .travel-link-row ul li {
    list-style: none;
  }
  #flight-salse-footer .navitime-link-row {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #flight-salse-footer a {
    color: #ffffff;
  }
  #flight-salse-footer .btn {
    width: 100%;
    margin: 5px 0;
    border-color: #e2e2e2;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  #flight-salse-footer {
    padding-bottom: 20px;
    color: #ffffff;
    background-color: #333333;
  }
  #flight-salse-footer .travel-link-row .area-col,
  #flight-salse-footer .travel-link-row .category-col,
  #flight-salse-footer .travel-link-row .navitime-col {
    height: 100%;
  }
  #flight-salse-footer .travel-link-row .area-col .col-xs-12,
  #flight-salse-footer .travel-link-row .category-col .col-xs-12,
  #flight-salse-footer .travel-link-row .navitime-col .col-xs-12 {
    padding: 0;
  }
  #flight-salse-footer .travel-link-row .function-col {
    margin-top: 20px;
    padding: 0 30px;
  }
  #flight-salse-footer .travel-link-row .footer-title {
    margin: 0;
    padding-top: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    font-weight: bold;
  }
  #flight-salse-footer .travel-link-row ul {
    margin: 0;
    padding: 10px;
  }
  #flight-salse-footer .travel-link-row ul li {
    padding: 10px 0;
    list-style: none;
  }
  #flight-salse-footer .navitime-link-row {
    border-top: 1px solid #cccccc;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  #flight-salse-footer a {
    color: #ffffff;
  }
  #flight-salse-footer .btn {
    width: 100%;
    margin: 5px 0;
    border-color: #e2e2e2;
  }
}
@media screen and (min-width: 768px) {
  .app-appeal {
    margin: 64px 0 0 0;
  }
  .app-appeal .app-appeal-title {
    font-size: 18px;
    font-weight: bold;
    padding-left: 8px;
    border-left: solid 5px #317ec7;
    line-height: 1.3;
  }
  .app-appeal .app-banner .banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .app-appeal .app-banner .banner-container .left-content {
    width: 360px;
  }
  .app-appeal .app-banner .banner-container .left-content .description {
    margin: 16px 0;
  }
  .app-appeal .app-banner .banner-container .left-content .link {
    text-align: center;
  }
  .app-appeal .app-banner .banner-container .left-content .link .app-qr {
    width: 238px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border-radius: 4px;
    background-color: #f0f0f0;
    margin: 16px auto;
  }
  .app-appeal .app-banner .banner-container .left-content .link .app-qr .img {
    width: 80px;
    height: 80px;
  }
  .app-appeal .app-banner .banner-container .left-content .link .image {
    width: 120px;
    height: 38px;
  }
  .app-appeal .app-banner .banner-container .right-content .img {
    width: 285px;
    height: 427px;
  }
}
/** SP **/
@media screen and (max-width: 768px) {
  .btn-white {
    color: #1a1a1a;
    background-color: #ffffff;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-white:hover {
    color: #1a1a1a;
    background-color: #e9e9e9;
  }
  .btn-white:focus {
    color: #1a1a1a;
  }
  .btn-light-gray {
    color: #1a1a1a;
    background-color: #e9e9e9;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-light-gray:hover {
    color: #1a1a1a;
    background-color: #d1d1d1;
  }
  .btn-light-gray:focus {
    color: #1a1a1a;
  }
  .btn-dark {
    color: #ffffff;
    background-color: #333333;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-dark:hover {
    color: #ffffff;
    background-color: #000000;
  }
  .btn-dark:focus {
    color: #ffffff;
  }
  .btn-yellow {
    color: #1a1a1a;
    background-color: #f5be20;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-yellow:hover {
    color: #1a1a1a;
    background-color: #dba51f;
  }
  .btn-yellow:focus {
    color: #1a1a1a;
  }
  .btn-red {
    color: #ffffff;
    background-color: #df3e38;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-red:hover {
    color: #ffffff;
    background-color: #af3231;
  }
  .btn-red:focus {
    color: #ffffff;
  }
  .btn-maincolor {
    color: #ffffff;
    background-color: #317ec7;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0px 2px 0px 1px rgba(0, 0, 0, 0.2);
  }
  .btn-maincolor:hover {
    color: #ffffff;
    background-color: #2a6596;
  }
  .btn-maincolor:focus {
    color: #ffffff;
  }
  body {
    font-family: "hiragino kaku gothic pro", helvetica, arial, meiryo, "ms pgothic", sans-serif;
    font-size: 12px;
    line-height: 18px;
  }
  .btn {
    padding: 10px 12px;
  }
  .row-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .row-height .col-height {
    display: table-cell;
    float: none;
    height: 100%;
  }
  .row-height .col-top {
    vertical-align: top;
  }
  .row-height .col-middle {
    vertical-align: middle;
  }
  .row-height .col-bottom {
    vertical-align: bottom;
  }
  .row-height .col-lg-1, .row-height .col-lg-10, .row-height .col-lg-11, .row-height .col-lg-12, .row-height .col-lg-2, .row-height .col-lg-3, .row-height .col-lg-4, .row-height .col-lg-5, .row-height .col-lg-6, .row-height .col-lg-7, .row-height .col-lg-8, .row-height .col-lg-9, .row-height .col-md-1, .row-height .col-md-10, .row-height .col-md-11, .row-height .col-md-12, .row-height .col-md-2, .row-height .col-md-3, .row-height .col-md-4, .row-height .col-md-5, .row-height .col-md-6, .row-height .col-md-7, .row-height .col-md-8, .row-height .col-md-9, .row-height .col-sm-1, .row-height .col-sm-10, .row-height .col-sm-11, .row-height .col-sm-12, .row-height .col-sm-2, .row-height .col-sm-3, .row-height .col-sm-4, .row-height .col-sm-5, .row-height .col-sm-6, .row-height .col-sm-7, .row-height .col-sm-8, .row-height .col-sm-9, .row-height .col-xs-1, .row-height .col-xs-10, .row-height .col-xs-11, .row-height .col-xs-12, .row-height .col-xs-2, .row-height .col-xs-3, .row-height .col-xs-4, .row-height .col-xs-5, .row-height .col-xs-6, .row-height .col-xs-7, .row-height .col-xs-8, .row-height .col-xs-9 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .datepicker-dropdown {
    left: 0px !important;
    width: 100% !important;
    padding: 24px 0px 48px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #f5f5f5 !important;
    /* フォント */
    /* 日付の余白 */
    /* 日にち */
  }
  .datepicker-dropdown .table-condensed {
    margin: 0 auto;
    font-size: 14px;
  }
  .datepicker-dropdown .table-condensed > tbody > tr > td, .datepicker-dropdown .table-condensed > tbody > tr > th, .datepicker-dropdown .table-condensed > tfoot > tr > td, .datepicker-dropdown .table-condensed > tfoot > tr > th, .datepicker-dropdown .table-condensed > thead > tr > td, .datepicker-dropdown .table-condensed > thead > tr > th {
    padding: 8px 12px !important;
  }
  .datepicker-dropdown thead {
    /* 前月/翌月リンク */
    /* 曜日 */
  }
  .datepicker-dropdown thead tr:nth-child(2) .prev, .datepicker-dropdown thead tr:nth-child(2) .next {
    font-size: 24px;
    font-weight: normal;
  }
  .datepicker-dropdown thead tr:nth-child(3) {
    border: 1px solid #cccccc;
  }
  .datepicker-dropdown thead tr:nth-child(3) .dow {
    font-weight: normal;
    border-left: 1px solid #cccccc;
    background-color: #f5f5f5;
  }
  .datepicker-dropdown thead tr:nth-child(3) .dow:first-child {
    border-left: 0;
  }
  .datepicker-dropdown tbody {
    border: 1px solid #cccccc;
  }
  .datepicker-dropdown tbody tr {
    border-bottom: 1px solid #cccccc;
  }
  .datepicker-dropdown tbody tr:last-child {
    border-bottom: none;
  }
  .datepicker-dropdown tbody tr td {
    color: #333333 !important;
    border-left: 1px solid #cccccc !important;
    background-color: #ffffff !important;
  }
  .datepicker-dropdown tbody tr td.disabled {
    color: #bebebe !important;
  }
  .datepicker-dropdown tbody tr td.new {
    color: #ffffff !important;
  }
  .datepicker-dropdown tbody tr td.old {
    color: #ffffff !important;
  }
  .datepicker-dropdown tbody tr .day-red {
    color: #ff0000 !important;
  }
  .datepicker-dropdown tbody tr .day-blue {
    color: #1000ff !important;
  }
  /* アクティブ日にち */
  .datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active.highlighted:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .open > .dropdown-toggle.datepicker table tr td.active, .open > .dropdown-toggle.datepicker table tr td.active.highlighted {
    color: #ffffff !important;
    background-color: #555555 !important;
    border-radius: 0 !important;
  }
  .datepicker table tr td.active.active.old, .datepicker table tr td.active.highlighted.active.old, .datepicker table tr td.active.highlighted:active.old, .datepicker table tr td.active.highlighted:hover.old, .datepicker table tr td.active:active.old, .datepicker table tr td.active:hover.old, .open > .dropdown-toggle.datepicker table tr td.active.old, .open > .dropdown-toggle.datepicker table tr td.active.highlighted.old {
    color: #ffffff !important;
    text-shadow: none !important;
    background-color: #ffffff !important;
  }
  /**パンくず用のスタイル*/
  .bread-crumb-frame {
    display: flex;
    flex-wrap: wrap;
    margin: 12px 5px;
    padding-inline-start: 0;
  }
  .bread-crumb-frame li {
    display: flex;
    font-size: 11px;
  }
  .bg-white {
    background-color: #ffffff;
  }
  .bg-gray {
    background-color: #e9e9e9;
  }
  #datepicker-showing-frame {
    z-index: 10;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
  }
  /**トラベル共通デザインボタン*/
  .travel-button-orange {
    background-color: #ffd20a;
  }
  .travel-button-orange:active {
    background-color: rgba(255, 210, 10, 0.7);
  }
  .travel-button-blue {
    background-color: #3683d8;
  }
  .travel-button-blue:active {
    background-color: rgba(54, 131, 216, 0.7);
  }
  .travel-button-white {
    border: solid 1px #3683d8;
  }
  .travel-button-white:active {
    background-color: rgba(54, 131, 216, 0.11);
  }
  #main-header {
    position: relative;
    z-index: 1040;
  }
  #main-header .navbar {
    border: none;
    margin: 0;
    height: 50px;
    background-color: #fff;
  }
  #main-header .navbar-header a {
    padding: 10px 0 0 10px;
  }
  #main-header .navbar-brand {
    padding: 0;
  }
  #main-header .seamless-navbar {
    background-color: #fff;
  }
  #main-header .seamless-navbar .navbar-brand img {
    width: 116px;
    height: 26px;
  }
  #main-header .container {
    position: relative;
  }
  #main-header .container .lang-sw {
    position: absolute;
    z-index: 1041;
    top: 9px;
    right: 16px;
    text-align: center;
  }
  #main-header .container .lang-sw .lang-menu {
    background-color: #ffffff;
    width: 144px;
    position: absolute;
    right: -10px;
    padding: 0 26px;
    display: none;
    top: 50px;
    border-radius: 4px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.18);
    border: solid 1px #cccccc;
  }
  #main-header .container .lang-sw .lang-menu .lang-list {
    display: block;
    font-size: 14px;
    margin: 20px 0;
  }
  #main-header .container .lang-sw .lang-menu .lang-list .lang-link {
    color: #333333;
  }
  #main-header .container .lang-sw .lang-menu .lang-list .selected-lang {
    color: #317ecf !important;
  }
  #main-header .container .lang-sw .lang-icon {
    display: block;
    margin: 0 auto;
  }
  #main-header .container .lang-sw .select-lang {
    display: block;
    color: #333333;
    font-size: 10px;
  }
  #main-header .navbar {
    background-color: #fff !important;
  }
  #main-header .navbar-header a {
    padding: 4px 0 16px 10px !important;
  }
  .footer-banner-section .container .app-presents-frame {
    background-color: #edf6ff;
    border-radius: 2px;
    height: 100%;
    padding: 32px 15px;
    margin: 24px 0;
  }
  .footer-banner-section .container .app-presents-frame > .col-xs-12 {
    margin: 20px 0;
  }
  .footer-banner-section .container .app-presents-frame .app-intro-title {
    height: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4em;
    text-align: center;
    margin: 0 0 32px;
  }
  .footer-banner-section .container .app-presents-frame .bannerColumn, .footer-banner-section .container .app-presents-frame .imageColumn {
    float: left;
    width: 50%;
  }
  .footer-banner-section .container .app-presents-frame .bannerColumn {
    margin-top: 26px;
    text-align: center;
  }
  .footer-banner-section .container .app-presents-frame .imageColumn {
    margin-top: 40px;
  }
  .footer-banner-section .container .app-presents-frame .imageColumn img {
    width: 134px;
    height: 200px;
  }
  .footer-banner-section .container .app-presents-frame .bannerColumn .appTitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.57;
    font-weight: bold;
    text-align: left;
    color: #000000;
    margin: 0 0 10px;
  }
  .footer-banner-section .container .app-presents-frame .bannerColumn .appDescription {
    height: auto;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 20px;
  }
  .footer-banner-section .container .app-presents-frame .bannerColumn a.readMoreBtn {
    width: 142px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.67;
    text-align: left;
    color: #3683d8;
  }
  .footer-banner-section .container .app-presents-frame .bannerColumn a, .footer-banner-section .container .app-presents-frame .bannerColumn a:hover, .footer-banner-section .container .app-presents-frame .bannerColumn a:visited, .footer-banner-section .container .app-presents-frame .bannerColumn a:focus {
    text-decoration: none;
  }
  .footer-banner-section .container .app-presents-frame .buttonRow {
    clear: both;
    text-align: center;
  }
  .footer-banner-section .container .app-presents-frame .buttonRow a > img {
    width: 110px;
    height: auto;
  }
  .footer-banner-section .container .booking-presents-frame {
    background-color: #f0f0f0;
    border-radius: 2px;
    padding: 32px 15px;
  }
  .footer-banner-section .container .booking-presents-frame .image-title {
    margin: 0;
  }
  .footer-banner-section .container .booking-presents-frame .image-title .booking-banner {
    width: 100%;
  }
  .footer-banner-section .container .booking-presents-frame .message-area {
    margin: 12px 0;
  }
  .footer-banner-section .container .booking-presents-frame .message-area .notice-message {
    font-size: 12px;
    line-height: 1.8;
  }
  .footer-banner-section .container .booking-presents-frame .link-area .search-button {
    width: 100%;
    height: 48px;
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 48px;
    background-color: #3683d8;
    border: none;
    border-radius: 2px;
  }
  .footer-banner-section.ja .container {
    margin: 0;
    padding: 0;
  }
  .footer-banner-section.ja .container .travel-app-footer-banner {
    position: relative;
  }
  .footer-banner-section.ja .container .travel-app-footer-banner .banner-image {
    width: 100%;
  }
  .footer-banner-section.ja .container .travel-app-footer-banner .install-app-link {
    font-size: 18px;
    border-radius: 4px;
    padding: 12px;
    background-color: #F0B432;
    color: #FFFFFF;
    margin: 16px auto 0 auto;
    text-align: center;
    width: 80%;
    position: absolute;
    bottom: 20%;
    display: block;
    left: 10%;
  }
  .l-site-footer__list {
    background-color: #234164;
    margin: 16px 0 0 0;
    padding: 16px 0;
  }
  .l-site-footer__list:lang(ja) {
    background-color: #333333;
  }
  .l-site-footer__list__row {
    display: flex;
    justify-content: center;
  }
  .l-site-footer__list__row li {
    display: flex;
  }
  .l-site-footer__list__row li a {
    color: white;
    font-family: "SFProText-Light", "Noto Sans JP";
    font-size: 3.4vw;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 12px;
    letter-spacing: normal;
    text-align: center;
    padding: 2px 10px;
  }
  .l-site-footer__list__row li a:lang(ja) {
    font-size: 3.2vw;
    padding: 2px 10px;
  }
  .l-site-footer__list__row li + li {
    border-left: 1px solid white;
  }
  .l-site-footer__list__row:not(last-child) {
    margin-bottom: 8px;
  }
  .l-site-footer__copyright {
    margin: 16px 0 0;
    font-family: "SFProText-Light", "Noto Sans JP";
    font-size: 12px;
    color: white;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
  }
  #white-space {
    display: block;
    min-height: 50px;
  }
  #white-space-on-banner {
    display: none;
    height: 64px;
  }
  #page-top-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    transition: 0.5s;
  }
  #page-top-button .page-top img {
    width: 40px;
  }
  #page-top-button .page-top img:hover {
    opacity: 2;
  }
  #under-tab-section {
    position: fixed;
    transition: 0.5s;
    bottom: 0;
    z-index: 1000;
    text-align: center;
    font-size: 10px;
    background-color: #f5f5f5;
    width: 100%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.24);
  }
  #under-tab-section :hover {
    text-decoration: none;
  }
  #under-tab-section .tab-list {
    display: flex;
  }
  #under-tab-section .tab-list .tab {
    width: 20%;
    margin: 0 1px;
    min-height: 48px;
    padding-top: 5px;
    padding-bottom: 3px;
    line-height: 1.2;
    letter-spacing: -0.1px;
  }
  #under-tab-section .tab-list .tab img {
    width: 24px;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    padding-bottom: 1px;
  }
  #under-tab-section .tab-list .tab .tab-title {
    color: #2c4a76;
  }
  .under-tab-section-hide {
    bottom: -70px !important;
    transition: 0.5s !important;
  }
  #site-footer {
    border-top: 1px solid #e0e0e0;
  }
  #site-footer .footer-pass-section {
    margin: 32px 16px 0 16px;
  }
  #site-footer .footer-pass-section__title {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: bold;
  }
  #site-footer .footer-pass-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }
  #site-footer .footer-pass-section__grid .product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  #site-footer .footer-pass-section__grid .product-card--link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  #site-footer .footer-pass-section__grid .product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
  }
  #site-footer .footer-pass-section__grid .product-content {
    padding: 12px;
  }
  #site-footer .footer-pass-section__grid .product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    min-height: 36px;
    line-height: 1.3;
  }
  #site-footer .footer-pass-section__grid .product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
  }
  #site-footer .footer-banner-section {
    margin-top: 50px;
  }
  #site-footer .footer-banner-section .container {
    height: 100%;
  }
  #site-footer .footer-banner-section .container > .col-xs-12 {
    margin: 20px 0;
  }
  #site-footer .footer-banner-section .container .bannerColumn, #site-footer .footer-banner-section .container .imageColumn {
    float: left;
    width: 50%;
    margin-bottom: 16px;
  }
  #site-footer .footer-banner-section .container .bannerColumn {
    text-align: center;
  }
  #site-footer .footer-banner-section .container .imageColumn img {
    width: 140px;
    height: 210px;
  }
  #site-footer .footer-banner-section .container .bannerColumn .appTitle {
    font-size: 18px;
    line-height: 1.57;
    font-weight: bold;
    text-align: left;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
  }
  #site-footer .footer-banner-section .container .bannerColumn .appDescription {
    height: auto;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7;
    text-align: left;
  }
  #site-footer .footer-banner-section .container .bannerColumn a.readMoreBtn {
    width: 142px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.67;
    text-align: left;
    color: #3683d8;
  }
  #site-footer .footer-banner-section .container .bannerColumn a, #site-footer .footer-banner-section .container .bannerColumn a:hover, #site-footer .footer-banner-section .container .bannerColumn a:visited, #site-footer .footer-banner-section .container .bannerColumn a:focus {
    text-decoration: none;
  }
  #site-footer .footer-banner-section .container .buttonRow {
    clear: both;
    text-align: center;
  }
  #site-footer .footer-banner-section .container .buttonRow a > img {
    width: 110px;
    height: auto;
  }
  #site-footer .footer-banner-section.ja .container {
    margin: 0;
    padding: 0;
  }
  #site-footer .footer-banner-section.ja .container .travel-app-footer-banner {
    position: relative;
  }
  #site-footer .footer-banner-section.ja .container .travel-app-footer-banner .banner-image {
    width: 100%;
  }
  #site-footer .footer-banner-section.ja .container .travel-app-footer-banner .install-app-link {
    font-size: 18px;
    border-radius: 4px;
    padding: 12px;
    background-color: #F0B432;
    color: #FFFFFF;
    margin: 16px auto 0 auto;
    text-align: center;
    width: 80%;
    position: absolute;
    bottom: 20%;
    display: block;
    left: 10%;
  }
  #site-footer #site-link-section {
    height: 760px;
    padding: 32px;
    border-bottom: 1px solid #e0e0e0;
  }
  #site-footer #site-link-section #site-link-row {
    clear: both;
    padding-bottom: 25px;
  }
  #site-footer #site-link-section #site-link-row:last-child {
    padding-bottom: 0px;
  }
  #site-footer #site-link-section #site-link-row h4 {
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    background-color: #ffffff;
    padding: 0;
    margin: 16px 0px;
  }
  #site-footer #site-link-section #site-link-row ul {
    height: 110px;
    list-style: none;
    padding-left: 0;
  }
  #site-footer #site-link-section #site-link-row ul li {
    width: 50%;
    height: 45px;
    float: left;
  }
  #site-footer #site-link-section #site-link-row ul li a {
    display: block;
    font-size: 12px;
    height: 100%;
    color: #4a4a4a;
  }
  #site-footer #site-link-section #site-link-row ul li:nth-child(odd) {
    width: 45%;
    margin-right: 5%;
  }
  #site-footer #site-link-section .select-language {
    position: relative;
    padding-bottom: 32px;
  }
  #site-footer #site-link-section .select-language .dropdown .btn {
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 0.6em 2.4em 0.6em 1em;
    background-color: #fff;
    color: #4a4a4a;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
  }
  #site-footer #site-link-section .select-language .dropdown .dropdown-menu.lang {
    width: 100%;
    margin: 0;
    font-size: 14px;
    background-color: #fff;
    box-shadow: none;
  }
  #site-footer #site-link-section .select-language .dropdown .dropdown-menu.lang .dropdown-item {
    display: block;
    width: 100%;
    padding: 5px 0px;
    color: #4a4a4a;
    text-decoration: none;
  }
  #site-footer #site-link-section .select-language .dropdown .dropdown-menu.lang .dropdown-item:hover {
    background-color: #089aea;
    color: #ffffff;
  }
  #site-footer #site-link-section .select-language .dropdown .dropdown-menu.lang .dropdown-item span {
    padding-left: 1em;
  }
  #site-footer #site-link-section .select-language img {
    padding: 10px;
    z-index: 1;
    position: absolute;
    right: 8px;
    top: 0;
    line-height: 43px;
    pointer-events: none;
  }
  #site-footer #navitime-link-section {
    padding: 32px;
  }
  #site-footer #navitime-link-section .navitime-link-row {
    margin-top: 17px;
  }
  #site-footer #navitime-link-section .navitime-link-row a {
    font-size: 11px;
    line-height: 2.2;
    color: #4a4a4a;
  }
  #site-footer #navitime-link-section .navitime-link-row a :hover {
    text-decoration: none;
  }
  #site-footer #navitime-corporate-section {
    padding: 0px 32px 32px 32px;
    font-size: 11px;
  }
  #travel-sales-footer {
    padding-bottom: 20px;
    color: #ffffff;
    background-color: #333333;
  }
  #travel-sales-footer .travel-link-row .area-col .col-xs-12,
  #travel-sales-footer .travel-link-row .category-col .col-xs-12,
  #travel-sales-footer .travel-link-row .navitime-col .col-xs-12 {
    padding: 0;
  }
  #travel-sales-footer .travel-link-row .function-col {
    margin-top: 20px;
    padding: 0 30px;
  }
  #travel-sales-footer .travel-link-row .footer-title {
    margin: 0;
    padding-top: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    font-weight: bold;
  }
  #travel-sales-footer .travel-link-row ul {
    margin: 0;
    padding: 10px;
  }
  #travel-sales-footer .travel-link-row ul li {
    padding: 10px 0;
    list-style: none;
  }
  #travel-sales-footer .navitime-link-row {
    border-top: 1px solid #cccccc;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  #travel-sales-footer a {
    color: #ffffff;
  }
  #travel-sales-footer .btn {
    width: 100%;
    margin: 5px 0;
    border-color: #e2e2e2;
  }
  #travel-sales-footer .language-frame {
    margin: 20px 0 40px;
  }
  #travel-sales-footer .language-frame .language-list-ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #travel-sales-footer .language-frame .language-list-ul .language-list-li {
    display: inline-block;
    padding: 0 6px 0 2px;
  }
  #travel-sales-footer .language-frame .language-list-ul .language-list-li.separate {
    border-right: 1px solid #fff;
  }
  #travel-sales-footer .provider-frame {
    padding-top: 20px;
  }
  #travel-sales-footer .provider-frame .provider-area {
    border: 1px solid #ccc;
    padding: 20px 0 0 0;
    margin-top: 6px;
  }
  #travel-sales-footer .provider-frame .provider-area .provider-list {
    list-style: none;
    padding: 0 16px;
  }
  #travel-sales-footer .provider-frame .provider-area.jr {
    background-color: #ffffff;
    color: #333333;
  }
  #travel-sales-footer .provider-frame .provider-area.jr a {
    color: #333333;
  }
  #travel-sales-footer .provider-frame .provider-area.jr .company-logo {
    margin: 8px 0;
  }
  #travel-sales-footer .provider-frame .provider-area.jr .company-logo.air-trip {
    margin-right: 16px;
  }
  #webchat-content {
    z-index: 2000;
    position: absolute;
  }
  #webchat-content #webchat-container {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    border: solid 2px #e5eff9;
    border-radius: 10px 10px 0px 0px;
    background-color: white;
    z-index: 1050;
  }
  #webchat-content #webchat-container .webchat-body {
    overflow-y: scroll;
    float: right;
    max-width: 370px;
    min-width: 300px;
  }
  #webchat-content #webchat-container img.webchat-loading {
    display: none;
  }
  #webchat-content #webchat-container button.webchat-btn-close {
    color: #fff;
    background-color: #ffffff;
    border: none;
    height: 50px;
  }
  #webchat-content #webchat-container img.webchat-btn-ic-close-arrow {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    display: block;
  }
  #webchat-content #webchat-container img.webchat-btn-ic-close {
    display: none;
  }
  #webchat-content #webchat-container button.webchat-btn-close:hover {
    color: #fff;
    background-color: #72a8e3;
  }
  #webchat-content #webchat-btn-container {
    position: fixed;
    bottom: 60px;
    right: 3%;
  }
  #webchat-content #webchat-btn-container .webchat-notice {
    width: 20px;
  }
  #webchat-content #webchat-btn-container button.webchat-btn-large {
    display: none;
  }
  #webchat-content #webchat-btn-container button.webchat-btn-large .webchat-notice {
    width: 20px;
    margin-right: 8px;
    margin-bottom: 3px;
  }
  #webchat-content #webchat-btn-container button.webchat-btn-open {
    color: #fff;
    background-color: #3683d8;
  }
  #webchat-content #webchat-btn-container button.webchat-btn-open:hover {
    color: #fff;
    background-color: #72a8e3;
  }
  #webchat-content #webchat-btn-container div.webchat-btn-container__small {
    width: 48px;
  }
  .flights-section {
    padding: 1px 0 0 0;
    background-color: #ffffff;
  }
  .flights-section .nav-tabs {
    border-color: #cccccc;
  }
  .flights-section .nav-tabs li.active a {
    height: 40px;
    font-weight: 600;
    border-color: #cccccc;
    border-bottom: none;
    border-top: 2px solid #337EC7;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background-color: #ffffff;
    line-height: 38px;
  }
  .flights-section .nav-tabs li a {
    margin-right: 1px;
    padding: 0;
    height: 40px;
    line-height: 38px;
    color: #333333;
    font-size: 13px;
    text-align: center;
    border-radius: 0;
    border-top: 2px solid #f5f5f5;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
  }
  .flights-section .nav-tabs li:last-child a {
    margin: 0;
  }
  .flights-section .title-frame {
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid #ccc;
    background-color: #ffffff;
  }
  .flights-section .travel-information {
    width: 40%;
  }
  .flights-section .flight-contents {
    display: none;
  }
  .flights-section .flight-contents .flight-frame {
    padding: 0 4%;
    border: 1px solid #8395aa;
    background-color: #ffffff;
    margin: 10px;
    border-radius: 4px;
  }
  .flights-section .flight-contents .flight-frame.clicked {
    background-color: #F2F8FD;
  }
  .flights-section .flight-contents .flight-frame.selected {
    box-shadow: 0 0 0 2px #317EC7 inset;
  }
  .flights-section .flight-contents .flight-frame.selected .link {
    color: #ffffff;
  }
  .flights-section .flight-contents .flight-frame.selected .link .blue-btn {
    background-color: #2a6596;
  }
  .flights-section .flight-contents .flight-frame .title {
    margin-bottom: 5px;
    text-align: left;
    line-height: 1;
  }
  .flights-section .flight-contents .flight-frame .title .logo {
    height: 20px;
  }
  .flights-section .flight-contents .flight-frame .title .flight-number {
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    line-height: 20px;
    vertical-align: bottom;
  }
  .flights-section .flight-contents .flight-frame .schedule {
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    line-height: 1;
  }
  .flights-section .flight-contents .flight-frame .price-block {
    padding: 22px 4% 22px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    color: #DF3E38;
  }
  .flights-section .flight-contents .flight-frame .price-block .unit {
    font-size: 12px;
    font-weight: bold;
  }
  .flights-section .flight-contents .flight-frame .link {
    color: #fff;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    width: 20%;
  }
  .flights-section .flight-contents .flight-frame .link .blue-btn {
    background-color: #337EC7;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    font-weight: bold;
  }
  .loader-frame {
    display: none;
    padding: 24px 0;
    border-bottom: 1px solid #cccccc;
    background-color: #ffffff;
  }
  .loader-frame .loader {
    margin: 0 auto 16px auto;
    letter-spacing: 0.5px;
    border: 4px solid #e1e1e1;
    border-top: 4px solid #337EC7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .error-frame {
    display: none;
    padding: 24px 12px;
    color: #333333;
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid #cccccc;
    background-color: #ffffff;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  #flight-salse-footer {
    padding: 40px 0;
    color: #ffffff;
    background-color: #333333;
  }
  #flight-salse-footer .travel-link-row .area-col,
  #flight-salse-footer .travel-link-row .category-col,
  #flight-salse-footer .travel-link-row .navitime-col {
    height: 312px;
  }
  #flight-salse-footer .travel-link-row .area-col.not-left,
  #flight-salse-footer .travel-link-row .category-col.not-left,
  #flight-salse-footer .travel-link-row .navitime-col.not-left {
    border-left: 1px solid #e2e2e2;
  }
  #flight-salse-footer .travel-link-row .area-col .col-xs-6,
  #flight-salse-footer .travel-link-row .area-col .col-xs-12,
  #flight-salse-footer .travel-link-row .category-col .col-xs-6,
  #flight-salse-footer .travel-link-row .category-col .col-xs-12,
  #flight-salse-footer .travel-link-row .navitime-col .col-xs-6,
  #flight-salse-footer .travel-link-row .navitime-col .col-xs-12 {
    padding: 0;
  }
  #flight-salse-footer .travel-link-row .function-col {
    padding: 0 30px;
  }
  #flight-salse-footer .travel-link-row .footer-title {
    margin: 0;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    font-weight: bold;
  }
  #flight-salse-footer .travel-link-row .footer-title.lower {
    padding-top: 20px;
    display: inline-block;
  }
  #flight-salse-footer .travel-link-row ul {
    margin: 0;
    padding: 0;
  }
  #flight-salse-footer .travel-link-row ul li {
    list-style: none;
  }
  #flight-salse-footer .navitime-link-row {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #flight-salse-footer a {
    color: #ffffff;
  }
  #flight-salse-footer .btn {
    width: 100%;
    margin: 5px 0;
    border-color: #e2e2e2;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #flight-salse-footer {
    padding-bottom: 20px;
    color: #ffffff;
    background-color: #333333;
  }
  #flight-salse-footer .travel-link-row .area-col,
  #flight-salse-footer .travel-link-row .category-col,
  #flight-salse-footer .travel-link-row .navitime-col {
    height: 100%;
  }
  #flight-salse-footer .travel-link-row .area-col .col-xs-12,
  #flight-salse-footer .travel-link-row .category-col .col-xs-12,
  #flight-salse-footer .travel-link-row .navitime-col .col-xs-12 {
    padding: 0;
  }
  #flight-salse-footer .travel-link-row .function-col {
    margin-top: 20px;
    padding: 0 30px;
  }
  #flight-salse-footer .travel-link-row .footer-title {
    margin: 0;
    padding-top: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #909090;
    font-weight: bold;
  }
  #flight-salse-footer .travel-link-row ul {
    margin: 0;
    padding: 10px;
  }
  #flight-salse-footer .travel-link-row ul li {
    padding: 10px 0;
    list-style: none;
  }
  #flight-salse-footer .navitime-link-row {
    border-top: 1px solid #cccccc;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  #flight-salse-footer a {
    color: #ffffff;
  }
  #flight-salse-footer .btn {
    width: 100%;
    margin: 5px 0;
    border-color: #e2e2e2;
  }
}
@media screen and (max-width: 768px) {
  .app-appeal {
    margin: 48px 0 0 0;
  }
  .app-appeal .app-appeal-title {
    font-size: 16px;
    font-weight: bold;
    padding-left: 6px;
    border-left: solid 5px #317ec7;
    line-height: 1.3;
  }
  .app-appeal .app-banner {
    margin: 16px 0;
  }
  .app-appeal .app-banner .banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .app-appeal .app-banner .banner-container .left-content {
    margin: 24px 0 0 0;
  }
  .app-appeal .app-banner .banner-container .left-content .image {
    width: 140px;
    height: 210px;
  }
  .app-appeal .app-banner .banner-container .right-content .description {
    margin: 0 0 16px 0;
  }
  .app-appeal .app-banner .banner-container .right-content .link {
    display: flex;
    justify-content: space-between;
  }
  .app-appeal .app-banner .banner-container .right-content .install-app-link {
    display: block;
    line-height: 14px;
    font-size: 18px;
    border-radius: 4px;
    padding: 12px;
    background-color: #F0B432;
    color: #FFFFFF;
    margin: 16px auto 0 auto;
    text-align: center;
    width: 97%;
  }
}
#main-content {
  background-color: #ffffff;
  margin-bottom: 60px;
  /** PC **/
  /** SP **/
}
@media screen and (min-width: 768px) {
  #main-content .container .content-title-h1 {
    font-size: 24px;
  }
  #main-content .container .content-title-h2 {
    font-size: 20px;
    border-left: 5px solid #317ec7;
    padding-left: 8px;
    margin-top: 40px;
    margin-bottom: 0;
  }
  #main-content .container .content-title-h3 {
    font-size: 16px;
    background-color: #e5eff9;
    height: 38px;
    line-height: 38px;
    padding-left: 12px;
    color: #426894;
    margin-bottom: 14px;
  }
  #main-content .container .content-title-h3 .product-icon {
    margin: 0 8px 1px 0;
  }
  #main-content .container .content-title-h4 {
    font-size: 14px;
    font-weight: bold;
  }
  #main-content .container .summary-text {
    padding-bottom: 6px;
  }
  #main-content .container .summary-text .summary-text-list {
    padding-left: 30px;
  }
  #main-content .container .summary-text .summary-text-list .detail-list {
    margin: 0 0 10px 0;
  }
  #main-content .container .summary-text .summary-text-list .caution {
    color: #df3e38;
  }
  #main-content .container .summary-text .summary-text-list .note-table {
    word-break: break-all;
  }
  #main-content .container .summary-text .summary-text-list .note-table th {
    border: 1px solid #ccc;
    font-size: 13px;
    font-weight: bold;
    background-color: #f5f5f5;
  }
  #main-content .container .summary-text .summary-text-list .call-center-phone {
    font-size: 22px;
    margin-bottom: 6px;
  }
  #main-content .container .summary-text .summary-text-list .no-li-indent {
    list-style: none;
  }
  #main-content .container .summary-text .summary-text-list .list-katakana {
    list-style-type: katakana;
  }
  #main-content .container .summary-text .guide-page-link {
    cursor: pointer;
    margin: 8px 310px;
    width: 500px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #3683D8;
    border-radius: 2px;
  }
  #main-content .pc-only {
    display: block;
  }
  #main-content .sp-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #main-content .container {
    margin: 0 0 40px 0;
  }
  #main-content .container .content-title-h1 {
    font-size: 20px;
    line-height: 1.4em;
  }
  #main-content .container .content-title-h2 {
    border-left: 5px solid #317ec7;
    margin-top: 20px;
    margin-bottom: 16px;
    padding-left: 8px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
  }
  #main-content .container .content-title-h3 {
    margin-top: 10px;
    font-size: 16px;
    height: auto;
    line-height: 1.4em;
    padding: 4px 12px;
    background-color: #e5eff9;
    color: #426894;
  }
  #main-content .container .content-title-h3 .product-icon {
    margin: 0 8px 1px 0;
  }
  #main-content .container .content-title-h3 .product-icon.block {
    display: block;
  }
  #main-content .container .content-title-h4 {
    font-size: 13px;
    font-weight: bold;
  }
  #main-content .container .summary-text {
    padding-bottom: 6px;
  }
  #main-content .container .summary-text .summary-text-list {
    padding-left: 24px;
  }
  #main-content .container .summary-text .summary-text-list .detail-list {
    margin: 0 0 10px 0;
  }
  #main-content .container .summary-text .summary-text-list .caution {
    color: #df3e38;
  }
  #main-content .container .summary-text .summary-text-list .note-table {
    word-break: break-all;
  }
  #main-content .container .summary-text .summary-text-list .note-table th {
    border: 1px solid #ccc;
    font-size: 13px;
    font-weight: bold;
    background-color: #f5f5f5;
  }
  #main-content .container .summary-text .summary-text-list .call-center-phone {
    font-size: 22px;
    margin-bottom: 6px;
  }
  #main-content .container .summary-text .summary-text-list .no-li-indent {
    list-style: none;
  }
  #main-content .container .summary-text .summary-text-list .list-katakana {
    list-style-type: katakana;
  }
  #main-content .container .summary-text .guide-page-link {
    margin: 8px 0;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #3683D8;
    border-radius: 2px;
  }
  #main-content .pc-only {
    display: none;
  }
  #main-content .sp-only {
    display: block;
  }
}
#main-content .application-form .row-height .page-title {
  font-size: 22px;
  color: #333;
  letter-spacing: normal;
}
#main-content .application-form .row-height .application-input-form-area .about-text-area {
  margin: 16px 0 36px 0;
}
#main-content .application-form .row-height .application-input-form-area .application-input-form ul {
  padding: 0;
}
#main-content .application-form .row-height .application-input-form-area .application-input-form ul li {
  margin: 16px 0;
  list-style: none;
}
#main-content .application-form .row-height .application-input-form-area .application-input-form ul li .label-title {
  font-weight: bold;
}
#main-content .application-form .row-height .application-input-form-area .application-input-form .submit-btn-area {
  margin-top: 16px;
}
#main-content .application-form .row-height .application-input-form-area .btn-application-send {
  cursor: pointer;
  display: inline-block;
  padding: 12px 0;
  width: 250px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #EEA524;
  border-radius: 4px;
  background-color: #FFC04F;
}
