@charset "UTF-8";
@font-face {
  font-family: 'KozGoPr6N-Bold';
  font-style: normal;
  font-weight: normal;
  src: local("KozGoPr6N-Bold"), url("../fonts/KozGoPr6N-Bold.otf") format("OpenType");
}

@font-face {
  font-family: 'KozGoPr6N-Heavy';
  font-style: normal;
  font-weight: normal;
  src: local("KozGoPr6N-Heavy"), url("../fonts/KozGoPr6N-Heavy.otf") format("OpenType");
}

@font-face {
  font-family: 'KozGoPr6N-Medium';
  font-style: normal;
  font-weight: normal;
  src: local("KozGoPr6N-Medium"), url("../fonts/KozGoPr6N-Medium.otf") format("OpenType");
}

@font-face {
  font-family: 'KozGoPr6N-Regular';
  font-style: normal;
  font-weight: normal;
  src: local("KozGoPr6N-Regular"), url("../fonts/KozGoPr6N-Regular.otf") format("OpenType");
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
     -moz-box-orient: horizontal !important;
     -moz-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
     -moz-box-orient: vertical !important;
     -moz-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
     -moz-box-orient: horizontal !important;
     -moz-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
     -moz-box-orient: vertical !important;
     -moz-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
     -moz-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
     -moz-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
     -moz-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.flex-1-0 {
  -webkit-box-flex: 1 !important;
     -moz-box-flex: 1 !important;
      -ms-flex: 1 0 !important;
          flex: 1 0 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
     -moz-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
     -moz-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
     -moz-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
     -moz-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
     -moz-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
     -moz-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
     -moz-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
     -moz-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
     -moz-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.d-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

html {
  font-size: 10px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ W6", "Hiragino Kaku Gothic W6", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.intro-page {
  font-family: "ヒラギノ角ゴ W6", "Hiragino Kaku Gothic W6", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

body,
td,
th,
input,
textarea {
  color: #231815;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ W6", "Hiragino Kaku Gothic W6", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

body {
  overflow-wrap: break-word;
}

a {
  color: #231815;
  text-decoration: none;
  /*
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  opacity: .80;
*/
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.img_ck {
  font-size: 0.1rem;
  line-height: 0;
}

/* clearfix (micro) */
.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

* {
  margin: 0;
  padding: 0;
  word-break: break-word;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

*::before, *::after {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

iframe {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ul,
ol,
li {
  list-style: none;
}

input,
select,
textarea,
button {
  outline: none;
}

picture {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
img,
nav {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px), print {
  .show_sp {
    display: none !important;
  }
  .container {
    min-width: 1280px;
    margin: 0 auto;
  }
  .row {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  a[href^=tel] {
    pointer-events: none;
    text-decoration: none;
    opacity: 1 !important;
    cursor: default !important;
  }
  a {
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  a:hover {
    opacity: 0.7;
  }
  /*======= COMMON =========*/
  .subTtl {
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    color: #E3007F;
  }
  .subBanner {
    background-color: #00B4ED;
    position: relative;
    height: 330px;
    padding-right: 600px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .subBanner h2 {
    color: #ffffff;
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 600;
  }
  .subBanner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 600px;
    background: url("../img/sub_banner.jpg") no-repeat center;
    -moz-background-size: cover;
         background-size: cover;
  }
  .breadcrumb {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
  }
  .breadcrumb li {
    font-size: 1.4rem;
    margin-left: 5px;
    font-weight: 500;
  }
  .breadcrumb li:not(:last-child) {
    padding-right: 18px;
    position: relative;
  }
  .breadcrumb li:not(:last-child)::after {
    content: '＞';
    display: block;
    position: absolute;
    right: 0;
    top: 1px;
    font-size: 1.3rem;
  }
  .breadcrumb li span {
    display: block;
    padding-bottom: 5px;
    position: relative;
  }
  .pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pagination li.active {
    background-color: #B1B2B3;
    color: #ffffff;
  }
  .pagination li.disabled {
    opacity: .8;
    cursor: not-allowed;
  }
  .pagination li:first-child a,
  .pagination li:first-child span, .pagination li:last-child a,
  .pagination li:last-child span {
    padding-bottom: 10px;
    padding-top: 6px;
  }
  .pagination li:not(:last-child) {
    margin-right: 5px;
  }
  .pagination li a,
  .pagination li span {
    display: block;
    text-align: center;
    padding: 8px 17px;
    width: 100%;
    border: 1px solid #B1B2B3;
    font-size: 1.8rem;
  }
  .check input {
    position: absolute;
    left: -9999px;
  }
  .check input:checked + label {
    background-image: url("../img/template-list/checked.png");
  }
  .check label {
    outline: none;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    line-height: 1;
    font-size: 1.6rem;
    background-image: url("../img/template-list/uncheck.png");
    background-position: left center;
    background-repeat: no-repeat;
    -moz-background-size: 22px;
         background-size: 22px;
  }
  .option {
    border: 2px solid #00A0E9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .option.--sm {
    font-size: 1.6rem;
    height: 40px;
    padding: 0 15px;
    -moz-border-radius: 15px;
         border-radius: 15px;
  }
  .option.--sm .check {
    margin-left: 10px;
  }
  .review_popup_btn_top {
    margin: 0 15px;
    padding: 5px 15px;
    background: #29ABE2;
    -moz-border-radius: 15px;
         border-radius: 15px;
    color: #fff;
    font-size: 1.6rem;
  }
  .process_btn_top {
    padding: 5px 25px;
    background: #E70012;
    -moz-border-radius: 15px;
         border-radius: 15px;
    margin-right: 20px;
    color: #fff;
    font-size: 1.6rem;
  }
  .step {
    display: none;
  }
  .step li {
    width: 228px;
    position: relative;
    line-height: 1;
    font-size: 0;
  }
  .step li img {
    display: block;
  }
  .step li span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #ffffff;
    white-space: nowrap;
    font-size: 1.7rem;
    line-height: 1;
    text-align: center;
  }
  .step li .second {
    display: none;
  }
  .step li:first-child {
    z-index: 5;
  }
  .step li:nth-child(2) {
    z-index: 4;
  }
  .step li:nth-child(3) {
    z-index: 3;
  }
  .step li:nth-child(4) {
    z-index: 2;
  }
  .step li:nth-child(5) {
    z-index: 1;
  }
  .step li:not(:first-child) {
    margin-left: -32px;
  }
  .step li.active .first {
    display: none;
  }
  .step li.active .second {
    display: block;
  }
  .dropdown {
    position: relative;
    margin-left: 10px;
  }
  .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: -webkit-calc(100% + 15px);
    top: -moz-calc(100% + 15px);
    top: calc(100% + 15px);
  }
  .dropdown .btn-tpl {
    min-width: 127px;
  }
  .dropdown > ul {
    width: 135px;
    border: 1px solid #008bd4;
    position: absolute;
    left: 0;
    top: -webkit-calc(100% + 40px);
    top: -moz-calc(100% + 40px);
    top: calc(100% + 40px);
    background-color: #ffffff;
    padding: 8px 0 8px;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
  }
  .dropdown > ul::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -15px;
  }
  .dropdown > ul::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #008bd4;
    position: absolute;
    top: -16px;
    left: 50%;
    margin-left: -16px;
  }
  .dropdown > ul li {
    padding: 0 10px;
  }
  .dropdown > ul li:first-child a, .dropdown > ul li:nth-child(4) a, .dropdown > ul li:nth-child(6) a {
    border-bottom: 1px solid #008bd4;
    padding-bottom: 14px;
  }
  .dropdown > ul li:last-child a, .dropdown > ul li:nth-child(2) a, .dropdown > ul li:nth-child(5) a {
    padding-top: 14px;
  }
  .dropdown > ul li a {
    color: #008bd4;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    padding: 7px 0;
  }
  .btn-tpl {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    height: 40px;
    border: 1px solid #231815;
    font-size: 1rem;
    background-color: #ffffff;
    font-weight: 500;
    cursor: pointer;
  }
  .btn-tpl img {
    margin-right: 8px;
  }
  .btn-tpl.--blue {
    border: 1px solid #008bd4;
    color: #008bd4;
  }
  .float-btn-top {
    position: relative;
    -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
            transform: translateZ(0);
    text-align: center;
    margin-top: 80px;
    /*padding: 30px 0;*/
  }
  .float-btn-top:before {
    content: "";
    width: 100%;
    height: 100%;
    /*background-image: linear-gradient(to right,#F3A9C9 50%, #00BAEF 50%);*/
    background: #00BAEF;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
  }
  .float-btn-top a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .float-btn-mid {
    position: relative;
    /*transform: translateZ(0);*/
    background: #FFF33B;
    text-align: center;
    /*padding: 30px 0;*/
  }
  .float-btn-mid a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .float-btn {
    display: block;
    background-color: #E74291;
    color: #ffffff;
    position: relative;
    /*margin-top: 150px;*/
  }
  .float-btn a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .float-btn .row {
    max-width: 1080px;
    padding: 34px 90px;
    position: relative;
  }
  .float-btn .row::after {
    content: '';
    width: 33px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 345px;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url("../img/easy-flyer/right-icon.png") no-repeat center;
    -moz-background-size: 100%;
         background-size: 100%;
  }
  .float-btn .row::before {
    content: '';
    width: 286px;
    height: 156px;
    position: absolute;
    bottom: -1px;
    right: 30px;
    background: url("../img/float_bg.png") no-repeat center;
    -moz-background-size: 100%;
         background-size: 100%;
  }
  .float-btn span {
    display: block;
  }
  .float-btn__lg {
    font-size: 3.3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .float-btn__sm {
    font-size: 1.5rem;
    line-height: 1.46667;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .tbl_popup {
    width: 100%;
    min-width: 700px;
    padding: 15px 15px 30px;
    display: none;
  }
  .tbl_popup .preview_box {
    background: #F2F2F2;
    padding-bottom: 20px;
  }
  .tbl_popup .preview_box h3 {
    text-align: center;
    background: #000;
    color: #fff;
    padding: 7px;
  }
  .tbl_popup .preview_box figure figcaption {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    margin: 10px 0;
  }
  .tbl_popup .preview_box .download_btn a {
    width: 400px;
    padding: 10px;
    font-size: 1.8rem;
    text-align: center;
    display: block;
    background: #000;
    color: #fff;
    margin: 20px auto;
  }
  .tbl_popup .group_check {
    margin: 10px 0;
    padding: 0 50px;
    font-size: 1.8rem;
  }
  .tbl_popup .group_check h3 {
    text-align: center;
    color: red;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .tbl_popup .note {
    padding: 0 50px;
    font-size: 1.6rem;
  }
  .tbl_popup .preview_img {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tbl_popup .preview_img figure {
    min-width: 49%;
    margin: 0 10px;
  }
  .tbl_popup .btn_new_style {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    /*align-items: center;*/
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tbl_popup .btn_new_style a {
    width: 49%;
    background: #000 !important;
    color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5px;
    -moz-border-radius: 0 !important;
         border-radius: 0 !important;
  }
  .tbl_popup .btn_new_style a.designComplete_and_submission_save {
    width: 49%;
    background: #E10000 !important;
  }
  .tbl_popup .btn_new_style a.disable {
    pointer-events: none;
    opacity: .8;
    background: #3a3a3a !important;
  }
  .tbl_popup .btn_new_style a.disable.designComplete_and_submission_save {
    pointer-events: none;
    opacity: .8;
    background: #F49FA1 !important;
  }
  .tbl_popup .private_cf {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tbl_popup .private_cf .left_cf {
    width: 40%;
    /*margin-right: 15px;*/
  }
  .tbl_popup .private_cf .left_cf img {
    width: 100%;
  }
  .tbl_popup .private_cf .right_cf {
    width: 55%;
    text-align: center;
  }
  .tbl_popup .private_cf .right_cf p {
    font-size: 2rem;
  }
  .tbl_popup .private_cf .right_cf .frmControl {
    width: 300px;
    margin: 20px auto;
  }
  .tbl_popup .content_cf strong {
    display: block;
    text-align: center;
    color: #FE5521;
    font-size: 1.8rem;
  }
  .tbl_popup .content_cf p {
    text-align: center;
    font-size: 1.6rem;
    margin: 20px 0;
  }
  .tbl_popup .content_cf .cat_list .frmGroup {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .tbl_popup .content_cf .cat_list .frmGroup .frm_checkbox {
    margin-top: 14px;
  }
  .tbl_popup .content_cf .cat_list .frmGroup .frm_checkbox label span {
    font-size: 1.6rem;
  }
  .tbl_popup .content_cf .cat_list .frmGroup .frm_checkbox:not(:last-child) {
    margin-right: 10px;
  }
  .tbl_popup .content_cf .box_user {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tbl_popup .content_cf .box_user figure {
    margin-right: 10px;
    width: 80px;
    height: 80px;
  }
  .tbl_popup .content_cf .box_user figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-border-radius: 100%;
         border-radius: 100%;
  }
  .tbl_popup .content_cf .close_popup {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .tbl_popup .content_cf .close_popup a,
  .tbl_popup .content_cf .close_popup input {
    text-align: center;
    margin: 0 20px;
  }
  .tbl_popup .content_cf .close_popup a.white,
  .tbl_popup .content_cf .close_popup input.white {
    background: #fff;
    color: #FE5521;
  }
  .tbl_popup .content_cf .close_popup input.submit_next {
    background: #fff;
    -moz-border-radius: 5px;
         border-radius: 5px;
    color: #FE5521;
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
         box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    min-width: 150px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
  }
  .tbl_popup .content_cf .close_popup input.submit_next:hover {
    -moz-box-shadow: none;
         box-shadow: none;
  }
  .tbl_popup .process_cf strong {
    font-size: 2rem;
    display: block;
    text-align: center;
    color: #009FE8;
    padding: 5px;
    border: 1px solid #009FE8;
  }
  .tbl_popup .process_cf .what_choice {
    margin-top: 30px;
  }
  .tbl_popup .process_cf .what_choice ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tbl_popup .process_cf .what_choice ul li {
    width: 45%;
    text-align: center;
    margin: 0 auto;
  }
  .tbl_popup .process_cf .what_choice ul li span {
    font-size: 1.6rem;
  }
  .tbl_popup .process_cf .what_choice ul li figure {
    margin: 15px 0 20px;
  }
  .tbl_popup .process_cf .close_popup {
    text-align: center;
  }
  .tbl_popup .process_cf .close_popup .process_btn {
    background: #009FE8;
    color: #fff;
    font-size: 1.8rem;
    padding: 5px 14px;
    -moz-border-radius: 20px;
         border-radius: 20px;
  }
  .tbl_popup .process_cf .text-center {
    text-align: center;
    margin: 10px 0;
    font-size: 1.8rem;
  }
  .tbl_popup .slider figure {
    position: relative;
    /*&:after {
        content:"";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.3;
        background: url("../img/mark.png") repeat center;
      }*/
  }
  .tbl_popup .slider button {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 85px;
    display: block;
    width: 47px;
    height: 47px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    /*background: transparent;*/
    z-index: 3;
  }
  .tbl_popup .slick-arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .tbl_popup .slick-prev {
    background: url("../img/top/prev.png") no-repeat center;
    -moz-background-size: contain;
         background-size: contain;
    left: -23px;
  }
  .tbl_popup .slick-next {
    background: url("../img/top/next.png") no-repeat center;
    -moz-background-size: contain;
         background-size: contain;
    right: -23px;
  }
  .tbl_popup .slick-list::after {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffffff;
  }
  .tbl_popup .dublicate_cf {
    text-align: center;
  }
  .tbl_popup .dublicate_cf strong {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .tbl_popup .dublicate_cf .close_popup {
    margin-top: 30px;
  }
  .tbl_popup .dublicate_cf .process_btn {
    background: #009FE8;
    color: #fff;
    font-size: 1.8rem;
    padding: 5px 14px;
    -moz-border-radius: 20px;
         border-radius: 20px;
  }
  .tbl_popup .trash_cf {
    text-align: center;
  }
  .tbl_popup .trash_cf strong {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .tbl_popup .trash_cf .close_popup {
    margin-top: 30px;
  }
  .tbl_popup .trash_cf .process_btn {
    background: #EB1F21;
    color: #fff;
    font-size: 1.8rem;
    padding: 5px 14px;
    -moz-border-radius: 20px;
         border-radius: 20px;
  }
  .fancybox-outer .tbl_popup {
    display: block;
  }
  .panel {
    display: none;
  }
  .panel.active {
    display: block;
  }
  button.submit_btn,
  a.submit_btn,
  input[type=submit].submit_btn,
  input[type=button].submit_btn {
    border: none;
    color: #fff;
    font-size: 1.8rem;
    min-width: 150px;
    background: #FE5521;
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
         box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    padding: 10px 25px;
    -moz-border-radius: 5px;
         border-radius: 5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
  }
  button.submit_btn:hover,
  a.submit_btn:hover,
  input[type=submit].submit_btn:hover,
  input[type=button].submit_btn:hover {
    -moz-box-shadow: none;
         box-shadow: none;
  }
  #contact.contact {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 300px;
  }
  #scroll_banner {
    position: fixed;
    right: 0;
    top: 47%;
    width: 45px;
    opacity: 0;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
  }
  #scroll_banner.show {
    opacity: 1;
  }
  header {
    max-width: 1200px;
    margin: 0 auto;
    -moz-border-radius-bottomleft: 15px;
         border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
         border-bottom-right-radius: 15px;
    -moz-box-shadow: 0px 1px 9px 3px rgba(0, 0, 0, 0.34);
    box-shadow: 0px 1px 9px 3px rgba(0, 0, 0, 0.34);
    background-color: #ffffff;
    position: relative;
    z-index: 999;
  }
  header.fixed .bHeader__bottom {
    position: fixed;
    width: 100%;
    max-width: 1200px;
    top: 0;
    left: 50% !important;
    z-index: 199;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    min-width: 1200px;
    -moz-box-shadow: 0px 0px 8px 0px rgba(50, 49, 49, 0.39);
         box-shadow: 0px 0px 8px 0px rgba(50, 49, 49, 0.39);
    -moz-border-radius-bottomleft: 15px;
         border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
         border-bottom-right-radius: 15px;
    -moz-box-shadow: 0px 1px 9px 3px rgba(0, 0, 0, 0.34);
    box-shadow: 0px 1px 9px 3px rgba(0, 0, 0, 0.34);
  }
  header .bHeader__top {
    padding: 20px 30px;
  }
  header .bHeader__top .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            justify-content: space-between;
  }
  header .bHeader__top__slogan {
    /*// font-family: 'KozGoPr6N-Bold';*/
    font-size: 1.2rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
  header .bHeader__top__slogan a {
    margin-left: 175px;
  }
  header .bHeader__top__logo {
    line-height: 0;
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 268px;
            flex: 0 0 268px;
  }
  header .bHeader__top__logo a {
    display: block;
  }
  header .bHeader__top__listBtn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 15px;
  }
  header .bHeader__top__listBtn li:not(:last-child) {
    margin-right: 3px;
  }
  header .bHeader__top__listBtn li:first-child a {
    width: 95px;
    padding-left: 10px;
  }
  header .bHeader__top__listBtn li:nth-child(2) a {
    width: 120px;
    padding-left: 8px;
  }
  header .bHeader__top__listBtn li:last-child a {
    width: 100px;
    padding-left: 8px;
  }
  header .bHeader__top__listBtn li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.1rem;
    line-height: 1;
    color: #ffffff;
    height: 50px;
    position: relative;
    text-align: center;
    justify-content: center;
    background: #4AA336;
  }
  header .bHeader__top__listBtn li a.--orange {
    background-color: #F5A200;
  }
  header .bHeader__top__listBtn li a.--blue {
    background-color: #0068B7;
  }
  header .bHeader__top__listBtn li a.--lightBlue {
    background-color: #3D99B9;
  }
  header .bHeader__top__listBtn li a.--pink {
    background-color: #EE5EA2;
  }

  header .bHeader__top__listBtn li a.--green {
    background-color: #4AA336;
  }
  header .bHeader__top__listBtn li a img {
    margin-right: 3px;
  }
  header .bHeader__top__phone {
    padding-left: 10px;
  }
  header .bHeader__top__phone a {
    line-height: 1;
    font-weight: bold;
    display: block;
    white-space: nowrap;
  }
  header .bHeader__top__phone a:first-child {
    font-size: 2.8rem;
    background: url("../img/iconPhone.png") no-repeat left top 5px;
    padding-left: 35px;
  }
  header .bHeader__top__phone a:last-child {
    font-size: 1.6rem;
    text-align: right;
    margin-top: 2px;
  }
  header .bHeader__top__email {
    padding-left: 15px;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  header .bHeader__top__email a {
    font-size: 1.6rem;
    font-weight: bold;
    background: url("../img/iconMail.png") no-repeat left top 5px;
    padding-left: 35px;
  }
  header .bHeader__top__email p {
    line-height: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 1px solid #231815;
    padding: 3px 5px 3px 0;
    margin-top: 5px;
  }
  header .bHeader__top__email p span {
    font-size: 0.95rem;
    display: block;
    white-space: nowrap;
  }
  header .bHeader__bottom {
    background-color: #fff;
    -moz-border-radius-bottomleft: 15px;
         border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
         border-bottom-right-radius: 15px;
  }
  header .bHeader__bottom .nav > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 30px;
  }
  header .bHeader__bottom .nav > ul > li {
    width: -webkit-calc(100%/6);
    width: -moz-calc(100%/6);
    width: calc(100%/6);
    position: relative;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    white-space: nowrap;
    background-color: #ffffff;
    z-index: 2;
  }
  header .bHeader__bottom .nav > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  header .bHeader__bottom .nav > ul > li .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    -moz-box-shadow: 0px 5px 9px 3px rgba(0, 0, 0, 0.34);
    box-shadow: 0px 5px 9px 3px rgba(0, 0, 0, 0.34);
    z-index: 1;
    -moz-border-radius-bottomleft: 10px;
         border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
         border-bottom-right-radius: 10px;
    padding: 10px 10px 10px;
  }
  header .bHeader__bottom .nav > ul > li .sub-menu li:not(:last-child) {
    margin-bottom: 10px;
  }
  header .bHeader__bottom .nav > ul > li .sub-menu li a {
    background-color: #00B4ED;
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.15385;
    text-align: center;
    display: block;
    -moz-border-radius: 5px;
         border-radius: 5px;
    padding: 5px 0;
  }
  header .bHeader__bottom .nav > ul > li:first-child a {
    padding-left: 0;
  }
  header .bHeader__bottom .nav > ul > li:last-child a {
    padding-right: 0;
  }
  header .bHeader__bottom .nav > ul > li:last-child a::after {
    display: none;
  }
  header .bHeader__bottom .nav > ul > li > a {
    font-size: 1.6rem;
    line-height: 1;
    color: #231815;
    display: block;
    text-align: center;
    position: relative;
    font-weight: bold;
    z-index: 2;
    padding: 18px 0 20px;
    background-color: #ffffff;
  }
  header .bHeader__bottom .nav > ul > li > a::after {
    content: "";
    width: 1px;
    height: 16px;
    background-color: #231815;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    z-index: 1;
  }
  footer.--blue .bFooter__top {
    background-color: #2EA5DE !important;
  }
  footer .bNavFooter {
    background-color: #EBEEF0;
    padding: 60px 0 55px;
  }
  footer .bNavFooter .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1196px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .bNavFooter .row .mb-70 {
    margin-bottom: 70px;
  }
  footer .bNavFooter__list {
    width: -webkit-calc(100% / 3);
    width: -moz-calc(100% / 3);
    width: calc(100% / 3);
    padding-left: 20px;
  }
  footer .bNavFooter__list:not(:nth-child(3n+1)) {
    padding-left: 100px;
  }
  footer .bNavFooter__list li {
    margin-bottom: 5px;
  }
  footer .bNavFooter__list li:first-child {
    margin-bottom: 15px;
  }
  footer .bNavFooter__list li:last-child {
    margin-bottom: 0;
  }
  footer .bNavFooter__list li:not(:first-child) a {
    font-size: 1.6rem;
    line-height: 1;
  }
  footer .bNavFooter__list__title {
    font-size: 2rem;
    color: #0088D1;
    margin-bottom: 15px;
  }
  footer .bNavFooter__btn {
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 65px;
  }
  footer .bNavFooter__btn a {
    font-size: 2rem;
    line-height: 1;
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #231815;
    padding: 14px;
    width: 385px;
  }
  footer .bNavFooterBlue {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #2EA5DE;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 0 20px;
  }
  footer .bNavFooterBlue li a {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    width: 200px;
    display: block;
    text-align: center;
    padding: 2px 0;
    font-weight: 500;
  }
  footer .bNavFooterBlue li:not(:last-child) a {
    border-right: 1px solid #ffffff;
  }
  footer .bFooter__top {
    background-color: #717071;
    padding: 30px 0 45px;
  }
  footer .bFooter__top__logoFt {
    line-height: 0;
    text-align: center;
  }
  footer .bFooter__top__logoFt a {
    display: inline-block;
  }
  footer .bFooter__top__contact {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 750px;
    margin: 35px auto 0;
  }
  footer .bFooter__top__contact a {
    color: #ffffff;
  }
  footer .bFooter__top__phone a {
    line-height: 1;
    font-weight: bold;
    display: block;
    white-space: nowrap;
  }
  footer .bFooter__top__phone a:first-child {
    font-size: 4rem;
    background: url("../img/iconPhoneFt.png") no-repeat left top 6px;
    padding-left: 54px;
  }
  footer .bFooter__top__phone a:last-child {
    font-size: 2.2rem;
    text-align: right;
    margin-top: 5px;
  }
  footer .bFooter__top__email {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    padding-left: 25px;
  }
  footer .bFooter__top__email a {
    font-size: 2.3rem;
    font-weight: bold;
    background: url("../img/iconMailFt.png") no-repeat left top 6px;
    padding-left: 50px;
    white-space: nowrap;
  }
  footer .bFooter__top__email p {
    line-height: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 1px solid #ffffff;
    padding: 3px 5px 3px 0;
    margin-top: 10px;
  }
  footer .bFooter__top__email p span {
    font-size: 1.3rem;
    display: block;
    white-space: nowrap;
    color: #ffffff;
  }
  footer .bFooter__top__fax {
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 15px 0 25px;
    letter-spacing: 2px;
  }
  footer .bFooter__top__fax a {
    color: #ffffff;
  }
  footer .bFooter__top__company {
    text-align: center;
    color: #ffffff;
    font-size: 3.1rem;
    margin: 0;
    font-weight: bold;
    line-height: 1;
  }
  footer .bFooter__top__company a {
    color: #ffffff;
  }
  footer .bFooter__bottom {
    background-color: #E0E0E0;
    padding: 35px 0 45px;
  }
  footer .bFooter__bottom .row {
    max-width: 850px;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .bFooter__bottom .row .item {
    width: 33.33%;
    text-align: center;
  }
  footer .bFooter__bottom .row .item:first-child img {
    margin-bottom: 15px;
    width: 78px;
  }
  footer .bFooter__bottom .row .item:nth-child(2) img {
    margin-bottom: 22px;
    width: 115px;
  }
  footer .bFooter__bottom .row .item:nth-child(3) img {
    margin-bottom: 24px;
    width: 128px;
  }
  footer .bFooter__bottom .row .item:last-child img {
    margin-bottom: 30px;
    margin-top: 10px;
    width: 125px;
  }
  footer .bFooter__bottom .row .item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  footer .bFooter__bottom .row .item p {
    font-size: 1.2rem;
    line-height: 1.41667;
  }
  footer .bFooter__bottom .row .item h3 {
    line-height: 1;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 10px;
  }
  footer .bFooter__copyright {
    padding: 30px 0;
    background-color: #ffffff;
    text-align: center;
    max-width: 890px;
    width: 100%;
    margin: 0 auto;
    line-height: 1;
    font-size: 1.4rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  footer .bFooter__copyright span {
    vertical-align: middle;
  }
  footer .bFooter__copyright__left {
    padding-right: 36px;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 2.73438vw;
  }
  .show_pc {
    display: none !important;
  }
  .row {
    padding-left: 3.90625vw;
    padding-right: 3.90625vw;
  }
  .row_inner {
    padding-left: 3.90625vw;
    padding-right: 3.90625vw;
  }
  a[href^=tel] {
    text-decoration: none;
  }
  /*======= COMMON =========*/
  .subTtl {
    font-size: 5.20833vw;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    color: #E3007F;
  }
  .subBanner {
    position: relative;
    height: 42.96875vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: url("../img/sub_banner.jpg") no-repeat center #00B4ED;
    -moz-background-size: cover;
         background-size: cover;
  }
  .subBanner h2 {
    color: #ffffff;
    font-size: 4.94792vw;
    line-height: 1;
    font-weight: 600;
    position: relative;
    z-index: 2;
  }
  .subBanner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .breadcrumb {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .breadcrumb li {
    font-size: 2.34375vw;
    margin-left: 0.65104vw;
  }
  .breadcrumb li:not(:last-child) {
    padding-right: 2.86458vw;
    position: relative;
  }
  .breadcrumb li:not(:last-child)::after {
    content: '＞';
    display: block;
    position: absolute;
    right: 0;
    top: 0.26042vw;
    font-size: 2.34375vw;
  }
  .breadcrumb li span {
    position: relative;
    display: block;
    padding-bottom: 0.65104vw;
  }
  .breadcrumb li span::before {
    display: none;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.26042vw;
    background-color: #008bd4;
  }
  .check input {
    position: absolute;
    left: -9999px;
  }
  .check input:checked + label {
    background-image: url("../img/template-list/checked.png");
  }
  .check label {
    outline: none;
    position: relative;
    padding-left: 4.55729vw;
    cursor: pointer;
    line-height: 1;
    font-size: 2.73438vw;
    background-image: url("../img/template-list/uncheck.png");
    background-position: left center;
    background-repeat: no-repeat;
    -moz-background-size: 2.86458vw;
         background-size: 2.86458vw;
  }
  .pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pagination li.active {
    background-color: #B1B2B3;
    color: #ffffff;
  }
  .pagination li.disabled {
    opacity: .8;
    cursor: not-allowed;
  }
  .pagination li:first-child a, .pagination li:first-child span, .pagination li:last-child a, .pagination li:last-child span {
    padding-bottom: 1.30208vw;
    padding-top: 0.78125vw;
  }
  .pagination li:not(:last-child) {
    margin-right: 0.65104vw;
  }
  .pagination li a, .pagination li span {
    display: block;
    text-align: center;
    padding: 1.04167vw 2.21354vw;
    width: 100%;
    border: 1px solid #B1B2B3;
    font-size: 2.34375vw;
  }
  .option {
    border: 0.26042vw solid #00A0E9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .option.--sm {
    font-size: 2.73438vw;
    height: 5.20833vw;
    padding: 0 1.95313vw;
    -moz-border-radius: 1.95313vw;
         border-radius: 1.95313vw;
  }
  .step {
    display: none;
  }
  .dropdown {
    position: relative;
    margin-left: 1.30208vw;
  }
  .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: -webkit-calc(100% + 1.95313vw);
    top: -moz-calc(100% + 1.95313vw);
    top: calc(100% + 1.95313vw);
  }
  .dropdown .btn-tpl {
    min-width: 17.57813vw;
  }
  .dropdown .btn-tpl img {
    width: 2.86458vw;
  }
  .dropdown > ul {
    width: 20.83333vw;
    border: 1px solid #008bd4;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -webkit-calc(100% + 5.20833vw);
    top: -moz-calc(100% + 5.20833vw);
    top: calc(100% + 5.20833vw);
    background-color: #ffffff;
    padding: 1.04167vw 0;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
  }
  .dropdown > ul::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 1.95313vw solid transparent;
    border-right: 1.95313vw solid transparent;
    border-bottom: 1.95313vw solid #ffffff;
    position: absolute;
    top: -1.95313vw;
    left: 50%;
    margin-left: -1.95313vw;
  }
  .dropdown > ul::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 2.08333vw solid transparent;
    border-right: 2.08333vw solid transparent;
    border-bottom: 2.08333vw solid #008bd4;
    position: absolute;
    top: -2.08333vw;
    left: 50%;
    margin-left: -2.08333vw;
  }
  .dropdown > ul li {
    padding: 0 1.30208vw;
  }
  .dropdown > ul li:first-child a, .dropdown > ul li:nth-child(4) a, .dropdown > ul li:nth-child(6) a {
    border-bottom: 1px solid #008bd4;
    padding-bottom: 1.82292vw;
  }
  .dropdown > ul li:last-child a, .dropdown > ul li:nth-child(2) a, .dropdown > ul li:nth-child(5) a {
    padding-top: 1.82292vw;
  }
  .dropdown > ul li a {
    color: #008bd4;
    font-size: 1.95313vw;
    display: block;
    text-align: center;
    padding: 0.91146vw 0;
  }
  .btn-tpl {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 1.95313vw;
    height: 5.20833vw;
    border: 1px solid #231815;
    font-size: 2.34375vw;
    background-color: #ffffff;
  }
  .btn-tpl img {
    margin-right: 1.04167vw;
    width: 3.38542vw;
  }
  .btn-tpl.--blue {
    border: 1px solid #008bd4;
    color: #008bd4;
  }
  .float-btn-top {
    position: relative;
    -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
            transform: translateZ(0);
    text-align: center;
    margin-top: 10.41667vw;
    /*padding: 30px 0;*/
  }
  .float-btn-top:before {
    content: "";
    width: 100%;
    height: 70%;
    /*background-image: linear-gradient(to right,#F3A9C9 50%, #00BAEF 50%);*/
    background: #00BAEF;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
  }
  .float-btn-top a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .float-btn-mid {
    position: relative;
    /*transform: translateZ(0);*/
    background: #FFF33B;
    text-align: center;
    /*padding: 30px 0;*/
  }
  .float-btn-mid a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .float-btn {
    display: block;
    background-color: #E74291;
    color: #ffffff;
    position: relative;
    /*margin-top: vw(150);*/
  }
  .float-btn a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .float-btn .row {
    padding: 4.42708vw 3.90625vw;
    position: relative;
  }
  .float-btn .row::after {
    content: '';
    width: 4.29688vw;
    height: 5.20833vw;
    position: absolute;
    top: 50%;
    right: 27.34375vw;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url("../img/easy-flyer/right-icon.png") no-repeat center;
    -moz-background-size: 100%;
         background-size: 100%;
  }
  .float-btn .row::before {
    content: '';
    width: 37.23958vw;
    height: 20.3125vw;
    position: absolute;
    bottom: -0.13021vw;
    right: 0;
    background: url("../img/easy-flyer/float_bg.png") no-repeat center;
    -moz-background-size: 100%;
         background-size: 100%;
  }
  .float-btn span {
    display: block;
  }
  .float-btn__lg {
    font-size: 3.90625vw;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.95313vw;
  }
  .float-btn__sm {
    font-size: 1.95313vw;
    line-height: 1.46667;
    font-weight: 600;
    letter-spacing: 0.13021vw;
  }
  .tbl_popup {
    width: 100%;
    /*padding: vw(10);*/
    display: none;
  }
  .tbl_popup .private_cf .left_cf {
    /*margin-right: 15px;*/
  }
  .tbl_popup .private_cf .left_cf img {
    width: 100%;
  }
  .tbl_popup .private_cf .right_cf {
    text-align: center;
  }
  .tbl_popup .private_cf .right_cf p {
    font-size: 3.90625vw;
  }
  .tbl_popup .private_cf .right_cf .frmControl {
    /*width: 300px;*/
    margin: 2.60417vw auto;
  }
  .tbl_popup .content_cf strong {
    display: block;
    text-align: center;
    color: #FE5521;
    font-size: 3.64583vw;
    /*margin-top: vw(50);*/
  }
  .tbl_popup .content_cf p {
    text-align: center;
    font-size: 3.38542vw;
    margin: 2.60417vw 0;
  }
  .tbl_popup .content_cf .box_user {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tbl_popup .content_cf .box_user figure {
    margin-right: 2.60417vw;
    width: 13.02083vw;
    height: 13.02083vw;
  }
  .tbl_popup .content_cf .box_user figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-border-radius: 100%;
         border-radius: 100%;
  }
  .tbl_popup .content_cf .box_user h3 {
    font-size: 3.90625vw;
  }
  .tbl_popup .content_cf .close_popup {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6.51042vw;
  }
  .tbl_popup .content_cf .close_popup a,
  .tbl_popup .content_cf .close_popup input {
    text-align: center;
    margin: 0 2.60417vw;
    width: 19.53125vw;
    min-width: 19.53125vw;
  }
  .tbl_popup .content_cf .close_popup a.white,
  .tbl_popup .content_cf .close_popup input.white {
    background: #fff;
    color: #FE5521;
  }
  .tbl_popup .content_cf .close_popup input.submit_next {
    background: #fff;
    -moz-border-radius: 5px;
         border-radius: 5px;
    color: #FE5521;
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
         box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
  }
  .tbl_popup .content_cf .close_popup input.submit_next:hover {
    -moz-box-shadow: none;
         box-shadow: none;
  }
  .tbl_popup .process_cf strong {
    font-size: 3.64583vw;
    display: block;
    text-align: center;
    color: #009FE8;
    padding: 5px;
    border: 1px solid #009FE8;
  }
  .tbl_popup .process_cf .what_choice {
    margin-top: 15px;
  }
  .tbl_popup .process_cf .what_choice ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tbl_popup .process_cf .what_choice ul li {
    width: 45%;
    text-align: center;
    margin: 0 auto;
  }
  .tbl_popup .process_cf .what_choice ul li span {
    font-size: 3.38542vw;
  }
  .tbl_popup .process_cf .what_choice ul li figure {
    margin: 1.95313vw 0 2.60417vw;
  }
  .tbl_popup .process_cf .close_popup {
    text-align: center;
  }
  .tbl_popup .process_cf .close_popup .process_btn {
    background: #009FE8;
    color: #fff;
    font-size: 3.64583vw;
    padding: 5px 14px;
    -moz-border-radius: 20px;
         border-radius: 20px;
  }
  .tbl_popup .process_cf .text-center {
    text-align: center;
    margin: 1.95313vw 0;
    font-size: 2.34375vw;
  }
  .tbl_popup .slider figure {
    position: relative;
    /*&:after {
        content:"";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: .3;
        background: url("../img/mark.png") repeat center;
      }*/
  }
  .tbl_popup .slider button {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 10.41667vw;
    display: block;
    width: 6.11979vw;
    height: 6.11979vw;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    /*background: transparent;*/
    z-index: 3;
  }
  .tbl_popup .slick-arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .tbl_popup .slick-prev {
    background: url("../img/top/prev.png") no-repeat center;
    -moz-background-size: contain;
         background-size: contain;
    left: -2.99479vw;
  }
  .tbl_popup .slick-next {
    background: url("../img/top/next.png") no-repeat center;
    -moz-background-size: contain;
         background-size: contain;
    right: -2.99479vw;
  }
  .tbl_popup .slick-list::after {
    content: '';
    width: 0.65104vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffffff;
  }
  .fancybox-outer .tbl_popup {
    display: block;
  }
  .panel {
    display: none;
  }
  .panel.active {
    display: block;
  }
  button.submit_btn,
  a.submit_btn, input[type=submit] {
    border: none;
    color: #fff;
    font-size: 3.125vw;
    min-width: 32.55208vw;
    background: #FE5521;
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
         box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    padding: 1.30208vw 3.25521vw;
    -moz-border-radius: 0.65104vw;
         border-radius: 0.65104vw;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    text-align: center;
  }
  button.submit_btn:hover,
  a.submit_btn:hover, input[type=submit]:hover {
    -moz-box-shadow: none;
         box-shadow: none;
  }
  #scroll_banner {
    position: fixed;
    right: 0;
    top: 47%;
    width: 45px;
    opacity: 0;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
  }
  #scroll_banner.show {
    opacity: 1;
  }
  header.fixed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 999;
    -moz-box-shadow: 0px 0px 8px 0px rgba(50, 49, 49, 0.39);
         box-shadow: 0px 0px 8px 0px rgba(50, 49, 49, 0.39);
    -webkit-transform: translate3d(0, 0px, 0);
       -moz-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
  }
  header .bHeader__top {
    padding: 1.30208vw 0 0.65104vw;
  }
  header .bHeader__top .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .bHeader__top__slogan {
    font-size: 2.21354vw;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.65104vw;
    padding: 0 3.90625vw;
  }
  header .bHeader__top__logo {
    line-height: 0;
  }
  header .bHeader__top__logo a {
    display: inline-block;
  }
  header .bHeader__top__logo a img {
    width: 34.89583vw;
    height: auto;
  }
  header .bHeader__top__iconNav {
    width: 9.375vw;
    height: 9.375vw;
    position: relative;
    -webkit-transform: rotate(0deg) scale(0.6);
       -moz-transform: rotate(0deg) scale(0.6);
        -ms-transform: rotate(0deg) scale(0.6);
            transform: rotate(0deg) scale(0.6);
    cursor: pointer;
    z-index: 100;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    padding: 1.30208vw 0;
    margin-right: -1.95313vw;
  }
  header .bHeader__top__iconNav span {
    display: block;
    position: absolute;
    height: 0.91146vw;
    width: 9.375vw;
    background: #898989;
    -moz-border-radius: 1.17188vw;
         border-radius: 1.17188vw;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  header .bHeader__top__iconNav span:nth-child(1) {
    top: 0vw;
  }
  header .bHeader__top__iconNav span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header .bHeader__top__iconNav span:nth-child(3) {
    bottom: 0vw;
  }
  header .bHeader__top__iconNav.open {
    border: 0.52083vw solid #fff;
    padding: 1.30208vw;
    height: 9.375vw;
  }
  header .bHeader__top__iconNav.open span {
    background-color: #fff;
    height: 0.52083vw;
    right: -0.65104vw;
  }
  header .bHeader__top__iconNav.open span:nth-child(1) {
    top: 3.90625vw;
    -webkit-transform: rotate(135deg);
       -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  header .bHeader__top__iconNav.open span:nth-child(2) {
    opacity: 0;
    right: 7.8125vw;
  }
  header .bHeader__top__iconNav.open span:nth-child(3) {
    bottom: 3.90625vw;
    -webkit-transform: rotate(-135deg);
       -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  header .bHeader__top__listBtn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    padding-right: 1.30208vw;
    -webkit-box-pack: end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .bHeader__top__listBtn li:not(:nth-child(2)) {
    margin-right: 0.39063vw;
  }
  header .bHeader__top__listBtn li:first-child a img {
    width: 3.25521vw;
  }
  header .bHeader__top__listBtn li:nth-child(2) a img {
    width: 3.51563vw;
  }
  header .bHeader__top__listBtn li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.95313vw;
    line-height: 1;
    color: #ffffff;
    width: 20.83333vw;
    height: 6.51042vw;
    position: relative;
  }
  header .bHeader__top__listBtn li a.--orange {
    background-color: #EA5514;
  }
  header .bHeader__top__listBtn li a.--blue {
    background-color: #0068B7;
  }
  header .bHeader__top__listBtn li a.--lightBlue {
    background-color: #00B4ED;
  }
  header .bHeader__top__listBtn li a.--pink {
    background-color: #EE5EA2;
  }
  header .bHeader__top__listBtn li a img {
    margin-right: 1.04167vw;
  }
  header .bHeader__bottom .nav {
    background-color: #0068B7;
    padding: 16.27604vw 0 13.02083vw;
    position: absolute;
    width: 100%;
    /*height: 0;*/
    top: 0;
    left: 0;
    z-index: 99;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    transition: all 0.35s linear;
    overflow-y: scroll;
  }
  header .bHeader__bottom .nav.open {
    opacity: 1;
    visibility: visible;
  }
  header .bHeader__bottom .nav .sub-menu {
    background-color: #00B4ED;
    display: none;
  }
  header .bHeader__bottom .nav .sub-menu li a {
    padding: 1.95313vw 0;
    font-size: 4.16667vw;
    line-height: 1.3125;
  }
  header .bHeader__bottom .nav ul {
    outline: none;
  }
  header .bHeader__bottom .nav ul li {
    position: relative;
    outline: none;
  }
  header .bHeader__bottom .nav ul li.has-subMenu.active::before {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  header .bHeader__bottom .nav ul li.has-subMenu::after, header .bHeader__bottom .nav ul li.has-subMenu::before {
    content: '';
    width: 0.52083vw;
    height: 3.125vw;
    background-color: #ffffff;
    position: absolute;
    font-size: 6.51042vw;
    line-height: 1;
    right: 3.90625vw;
    top: 4.55729vw;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header .bHeader__bottom .nav ul li.has-subMenu::after {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  header .bHeader__bottom .nav ul li a {
    font-size: 4.6875vw;
    line-height: 1;
    color: #fff;
    display: block;
    text-align: center;
    position: relative;
    padding: 3.25521vw 0;
    outline: none;
  }
  footer.--blue .bFooter__top {
    background-color: #2EA5DE !important;
  }
  footer .bNavFooter {
    background-color: #EBEEF0;
    padding: 7.8125vw 0 7.16146vw;
  }
  footer .bNavFooter .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .bNavFooter__list {
    width: 50%;
    margin-bottom: 5.20833vw;
  }
  footer .bNavFooter__list li {
    margin-bottom: 0.65104vw;
  }
  footer .bNavFooter__list li:first-child {
    margin-bottom: 1.95313vw;
  }
  footer .bNavFooter__list li:last-child {
    margin-bottom: 0;
  }
  footer .bNavFooter__list li:not(:first-child) a {
    font-size: 2.34375vw;
    line-height: 1;
  }
  footer .bNavFooter__list__title {
    font-size: 2.86458vw;
    color: #0088D1;
    margin-bottom: 1.95313vw;
  }
  footer .bNavFooter__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-top: 3.90625vw;
  }
  footer .bNavFooter__btn a {
    margin-bottom: 1.95313vw;
    font-size: 2.86458vw;
    line-height: 1;
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #231815;
    padding: 2.60417vw;
    display: block;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  footer .bNavFooterBlue {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #2EA5DE;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5.20833vw 0 0;
  }
  footer .bNavFooterBlue li {
    width: -webkit-calc(100% / 4);
    width: -moz-calc(100% / 4);
    width: calc(100% / 4);
    margin-bottom: 2.60417vw;
  }
  footer .bNavFooterBlue li a {
    color: #ffffff;
    font-size: 1.95313vw;
    line-height: 1;
    display: block;
    text-align: center;
    padding: 0.26042vw 1.95313vw;
    font-weight: 500;
  }
  footer .bNavFooterBlue li:not(:last-child) a {
    border-right: 1px solid #ffffff;
  }
  footer .bFooter__top {
    background-color: #717071;
    padding: 3.90625vw 3.90625vw 5.85938vw;
  }
  footer .bFooter__top__logoFt {
    line-height: 0;
    text-align: center;
  }
  footer .bFooter__top__logoFt a {
    display: inline-block;
  }
  footer .bFooter__top__logoFt a img {
    width: 47.65625vw;
  }
  footer .bFooter__top__contact {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 4.55729vw auto 0;
  }
  footer .bFooter__top__contact a {
    color: #ffffff;
  }
  footer .bFooter__top__phone {
    margin-bottom: 2.60417vw;
  }
  footer .bFooter__top__phone a {
    line-height: 1;
    font-weight: bold;
    display: block;
    white-space: nowrap;
  }
  footer .bFooter__top__phone a:first-child {
    font-size: 5.20833vw;
    background: url("../img/iconPhoneFt.png") no-repeat left top 0.78125vw;
    -moz-background-size: 5.72917vw;
         background-size: 5.72917vw;
    padding-left: 7.03125vw;
  }
  footer .bFooter__top__phone a:last-child {
    font-size: 2.86458vw;
    text-align: center;
    margin-top: 0.65104vw;
  }
  footer .bFooter__top__email {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  footer .bFooter__top__email a {
    font-size: 3.25521vw;
    font-weight: bold;
    background: url("../img/iconMailFt.png") no-repeat left top 0.78125vw;
    -moz-background-size: 5.20833vw;
         background-size: 5.20833vw;
    padding-left: 6.51042vw;
    white-space: nowrap;
  }
  footer .bFooter__top__email p {
    line-height: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 1px solid #ffffff;
    padding: 0.39063vw 0.65104vw 0.39063vw 0;
    margin-top: 1.30208vw;
  }
  footer .bFooter__top__email p span {
    font-size: 2.21354vw;
    display: block;
    white-space: nowrap;
    color: #ffffff;
  }
  footer .bFooter__top__fax {
    text-align: center;
    color: #ffffff;
    font-size: 2.21354vw;
    margin: 1.95313vw 0 3.25521vw;
    letter-spacing: 0.26042vw;
  }
  footer .bFooter__top__fax a {
    color: #ffffff;
  }
  footer .bFooter__top__company {
    text-align: center;
    color: #ffffff;
    font-size: 4.03646vw;
    margin: 0;
    font-weight: bold;
    line-height: 1;
  }
  footer .bFooter__top__company a {
    color: #ffffff;
  }
  footer .bFooter__bottom {
    background-color: #E0E0E0;
    padding: 4.55729vw 0 4.55729vw;
  }
  footer .bFooter__bottom .row {
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .bFooter__bottom .row .item {
    width: 25%;
    text-align: center;
  }
  footer .bFooter__bottom .row .item:first-child img {
    margin-bottom: 1.95313vw;
    width: 10.15625vw;
  }
  footer .bFooter__bottom .row .item:nth-child(2) img {
    margin-bottom: 2.86458vw;
    width: 14.97396vw;
  }
  footer .bFooter__bottom .row .item:nth-child(3) img {
    margin-bottom: 3.125vw;
    width: 16.66667vw;
  }
  footer .bFooter__bottom .row .item:last-child img {
    margin-bottom: 3.90625vw;
    margin-top: 1.30208vw;
    width: 16.27604vw;
  }
  footer .bFooter__bottom .row .item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  footer .bFooter__bottom .row .item p {
    font-size: 1.69271vw;
    line-height: 1.41667;
  }
  footer .bFooter__bottom .row .item h3 {
    line-height: 1;
    font-size: 2.08333vw;
    font-weight: bold;
    margin-top: 1.30208vw;
  }
  footer .bFooter__copyright {
    padding: 3.90625vw 0;
    background-color: #ffffff;
    text-align: center;
    margin: 0 auto;
    line-height: 1;
    font-size: 1.82292vw;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  footer .bFooter__copyright span {
    display: block;
    text-align: center;
  }
  footer .bFooter__copyright span:last-child {
    margin-top: 1.30208vw;
  }
}


header .bHeader__top__listBtn li{
  min-width: 95px;
}
header .bHeader__top__listBtn li:first-child a,
header .bHeader__top__listBtn li:nth-child(2) a{
  padding-left: 0;
}
.bHeader__top__listBtn li a.btn_basic{
  border: 2px solid #4AA336;
  color: #4AA336;
  background-color: #fff;
  border-radius: 10px;
  font-weight: 500;
  padding-left: 0;
}
