@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

/* ====================================================
Color
==================================================== */
/* ====================================================
Font
==================================================== */
.color-red {
  color: #eb0000;
}

/* ====================================================
Position & transform
==================================================== */
/*p{
  @include boxSpace(0,0,0,0);
}*/
/*p.vertical{
  @include boxSpace($marginTop:0, $marginBottom:0);
}*/
/*p{
  @include boxSpacePdg(0,0,0,0);
}*/
/*p.vertical{
	@include boxSpacePdg($paddingTop:0, $paddingRight:0, $paddingBottom:0, $paddingLeft:0);
}*/
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Transiton
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
flexbox
==================================================== */
/* ====================================================
Base style & container
==================================================== */
html {
  overflow-x: hidden;
  font-size: 62.5%;
  background: #FFF;
}

body {
  color: #333;
  font-family: Century Gothic, "Noto Sans JP", sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  background: #f7f9fb;
}

.container {
  display: block;
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 6.66%;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1320px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 6.66%;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.is-not-pc .sp_tab {
  display: none !important;
}

@media screen and (min-width: 1025px) {
  .under-1024 {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .under-1024-r {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.tab-a {
  display: none;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .tab-a {
    display: block !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.img100 {
  width: 100%;
}

.is-pc .rollover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.is-pc .rollover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-box.content-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-box.content-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-box.content-bw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-box.content-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-box.align-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-box.align-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-box.align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Header
==================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 10;
  /*-----when header fixed-----*/
}

@media screen and (max-width: 1024px) {
  #main-header {
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #d1d7e1;
  }
}

#main-header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  #main-header .header-inner {
    padding: 0 6.66%;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap {
    padding-top: 0;
  }
}

#main-header .function-wrap .function {
  padding-right: 20px;
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap .function {
    padding: 20px;
  }
}

#main-header .function-wrap .function .function-inner > .clearfix {
  width: 380px\9;
  float: right\9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap .function .function-inner > .clearfix {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#main-header .function-wrap .function .font-size {
  float: left\9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 62px;
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap .function .font-size {
    width: 80px;
  }
}

#main-header .function-wrap .function .font-size .btn-size {
  float: left\9;
  display: block;
  width: 32px;
  width: 31px\9;
  color: #0073d7;
  font-family: Century Gothic, sans-serif;
  line-height: 30px;
  text-align: center;
  vertical-align: bottom;
  border: 1px solid #0073d7;
  cursor: pointer;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap .function .font-size .btn-size {
    width: 40px;
    line-height: 40px;
  }
}

#main-header .function-wrap .function .font-size .btn-size.active {
  color: #fff;
  background: #0073d7;
  border-color: #0073d7;
}

#main-header .function-wrap .function .font-size .btn-size.btn-s {
  font-size: 12px;
}

#main-header .function-wrap .function .font-size .btn-size.btn-m {
  font-size: 18px;
}

#main-header .function-wrap .function .search-box {
  float: right\9;
  margin-left: 8px;
  width: 310px;
  height: 32px;
  border: 1px solid #0073d7;
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap .function .search-box {
    width: calc(100% - 80px);
    height: 40px;
    border: 1px solid #0073d7;
  }
}

#main-header .function-wrap .function .search-box input {
  padding: 7px 10px;
  width: 274px;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap .function .search-box input {
    padding: 9px 10px;
    width: calc(100% - 30px);
  }
}

@media screen and (min-width: 1025px) {
  #main-header.index-header .function-wrap .function .search-box input {
    color: #ffffff;
  }
}

#main-header .function-wrap .function .search-box .btn-submit {
  display: inline-block;
  padding: 1px 10px 0 0;
  width: 24px;
  height: 30px;
}

@media screen and (max-width: 1024px) {
  #main-header .function-wrap .function .search-box .btn-submit {
    height: 38px;
  }
}

#main-header .function-wrap .function .search-box .btn-submit #icn-submit {
  width: 16px;
  fill: #0073d7;
}

#main-header .logo {
  background: #fff;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  #main-header .logo {
    position: relative;
    -ms-flex-preferred-size: 11.78%;
        flex-basis: 11.78%;
    max-width: 152px;
  }
  #main-header .logo:before {
    display: block;
    padding-bottom: 100%;
    content: '';
  }
  #main-header .logo img {
    max-width: 76.31%;
    margin-top: -6px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .logo {
    padding: 15px 10px 10px;
  }
}

@media screen and (max-width: 768px) {
  #main-header .logo {
    padding-top: 0;
  }
}

#main-header .logo span {
  display: block;
  color: #333;
  font-size: 9px;
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  #main-header .logo span {
    margin-top: 4px;
  }
}

#main-header .logo a {
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#main-header .logo a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

@media screen and (min-width: 1025px) {
  #main-header .logo a {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    margin-top: -60px;
  }
}

#main-header .logo .txt_cap_sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  #main-header .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 130px;
  }
  #main-header .logo-pc img {
    width: 82px;
    height: auto;
  }
  #main-header .logo span {
    display: none;
  }
  #main-header .logo .txt_cap_sp {
    display: block;
    margin: 2px auto 0;
  }
}

@media screen and (max-width: 768px) {
  #main-header .logo {
    width: 89px;
    height: 89px;
  }
  #main-header .logo-pc img {
    width: 73px;
  }
}

#main-header .logo-sp {
  padding: 5px 0 10px;
  display: none;
}

@media screen and (max-width: 1024px) {
  #main-header .logo-sp {
    left: 4%;
    padding-top: 4px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  #main-header .logo-sp {
    width: 30.66% !important;
  }
  #main-header .logo-sp span {
    font-size: 2.6vw;
    text-align: left;
    letter-spacing: .15em;
  }
}

#main-header .btn-parsonal {
  position: absolute;
  top: 8px;
  right: 60px;
  display: none;
  padding-left: 0;
  padding-right: 20px;
  width: 130px;
  color: #fff;
  font-size: 13px;
  line-height: 40px;
  text-align: center;
  border-radius: 30px;
}

#main-header .btn-parsonal:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 12px;
  height: 12px;
  background-color: transparent;
  -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
  mask-image: url("/common/assets/img/common/icon_external-link.svg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  #main-header .btn-parsonal {
    display: inline-block;
  }
}

@media screen and (max-width: 640px) {
  #main-header .btn-parsonal:before {
    width: 3.2vw;
    height: 3.2vw;
    visibility: visible;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal {
    padding-right: 20px;
    height: 81px;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .logo-fixed {
    display: none;
    -ms-flex-preferred-size: 140px;
        flex-basis: 140px;
    max-width: 140px;
    margin-top: -10px;
    text-align: center;
  }
  #main-header .navGlobal .logo-fixed a {
    display: block;
  }
  #main-header .navGlobal .logo-fixed span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .navGlobal .logo-fixed {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn .nav-item {
    position: relative;
    margin: 0 33px 0 0;
  }
  #main-header .navGlobal .navGlobalIn .nav-item:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  #main-header.index-header .navGlobalIn .nav-item:not(.nav-personal):hover .sub-nav {
    top: 70px;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  #main-header.index-header.is-animation .navGlobalIn .nav-item:not(.nav-personal):hover .sub-nav {
    top: 81px;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 80px;
    left: 50%;
    background: #ebeff5;
    z-index: 100;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    width: 380px;
    margin-left: -98px;
    -webkit-transition-delay: .15s;
         -o-transition-delay: .15s;
            transition-delay: .15s;
    display: table\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav.sub-nav--last {
    left: auto;
    right: 50%;
    margin-right: -98px;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item__child {
    display: block;
    color: #ffffff;
    padding: 6px 10px 6px 26px;
    color: #0073d7;
    font-size: 1.4rem;
    font-size: 14px;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item__child:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 12px;
    background-image: url(/common/assets/img/common/icon_internal-link-C_b.svg);
    background-image: url(/common/assets/img/common/icon_internal-link-C_b_ie.png) \9;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-top: -7px\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item__child:hover {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item__child:hover:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-box {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    display: table-cell\9;
    width: 50%\9;
    max-width: 50%;
    vertical-align: top\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-box--lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    line-height: 1.4;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-box--lower.__gray-triangle:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 12px 7px;
    border-color: transparent transparent #ebeff5 transparent;
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: -7px\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-primary {
    position: relative;
    padding: 0;
    height: 110px;
    text-align: center;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #0073d7;
    font-size: 1.8rem;
    font-size: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #fff;
    padding-top: 30px\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-primary.__blue-triangle:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 12px 7px;
    border-color: transparent transparent #0073d7 transparent;
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: -7px\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-primary:hover .sub-nav-primary__txt, #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-primary:hover .sub-nav-primary__en {
    opacity: 0.6;
    -ms-filter: "alpha(opacity=60)"\9;
    filter: alpha(opacity=60) \9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-primary__txt {
    display: block\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-primary__en {
    display: block;
    color: #8bb3eb;
    color: #8bb3eb;
    font-size: 1.6rem;
    font-size: 16px;
  }
  #main-header .navGlobal .navGlobalIn .nav-item:hover .nav-link {
    -ms-filter: "alpha(opacity=60)"\9;
    filter: alpha(opacity=60) \9;
    opacity: .6;
  }
  #main-header .navGlobal .navGlobalIn .nav-item:hover .sub-nav {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn .nav-item .nav-link {
    padding: 27px 0 27px 22px;
  }
}

#main-header .navGlobal .navGlobalIn .nav-item a {
  position: relative;
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn .nav-item a {
    display: inline-block;
    padding-left: 0;
    padding-right: 20px;
    color: #0073d7;
    font-size: 15px;
    font-size: 13px\9;
  }
  #main-header .navGlobal .navGlobalIn .nav-item a:not(.sub-nav-item__child):not(.nav-personal-link):not(.sub-nav-primary) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1260px) {
  #main-header .navGlobal .navGlobalIn .nav-item a {
    font-size: 13px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal {
    margin-top: 17px\9;
  }
}

#main-header .navGlobal .navGlobalIn .nav-item.nav-personal a {
  position: relative;
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal a {
    padding-left: 0;
    padding-right: 20px;
    width: 167px;
    color: #0073d7;
    line-height: 45px;
    text-align: center;
    border: 1px solid #0073d7;
    border-radius: 30px;
  }
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal a:before {
    display: none;
  }
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    width: 14px;
    height: 14px;
    background-image: url(/common/assets/img/common/icon_external-link_bl.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 1260px) {
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal a {
    padding-right: 25px;
    width: 135px;
    line-height: 40px;
  }
}

@media screen and (min-width: 1025px) {
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal a:hover {
    opacity: 0.6;
    -ms-filter: "alpha(opacity=60)"\9;
    filter: alpha(opacity=60) \9;
    color: #fff;
  }
  #main-header .navGlobal .navGlobalIn .nav-item.nav-personal a:hover:after {
    /*background-color: #fff;*/
  }
}

#main-header .navGlobal .navGlobalIn .open-subNav {
  display: none;
}

#main-header .navGlobal .btn-contact {
  display: none;
}

@media screen and (min-width: 1025px) {
  #main-header.is-animation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff;
  }
}

@media screen and (min-width: 1025px) {
  #main-header.is-animation .function-wrap {
    padding-top: 0;
    width: 100%;
  }
  #main-header.is-animation .function-wrap .function {
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d7e1;
    display: none;
  }
  #main-header.is-animation .function-wrap .function .search-box {
    border: 1px solid #0073d7;
  }
}

@media screen and (min-width: 1025px) {
  #main-header.is-animation .navGlobal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px 0;
  }
}

#main-header.is-animation .navGlobal .logo-fixed {
  display: block;
}

@media screen and (max-width: 1024px) {
  #main-header.is-animation .navGlobal .logo-fixed {
    display: none;
    margin-top: 0;
  }
}

@media screen and (min-width: 1025px) {
  #main-header.is-animation .navGlobal .navGlobalIn {
    height: 100%;
  }
  #main-header.is-animation .navGlobal .hover-trigger {
    display: block;
    height: 100%;
  }
  #main-header.is-animation .navGlobal .nav-item.nav-tx {
    display: block;
    height: 100%;
  }
}

#main-header.is-animation .logo-pc {
  display: none;
}

@media screen and (max-width: 1024px) {
  #main-header.is-animation .logo {
    display: none;
  }
  #main-header.is-animation .logo-sp {
    display: block;
    background: none;
    width: auto;
    height: auto;
  }
  #main-header.is-animation .logo-sp span {
    display: block;
    color: #333;
  }
}

#main-header .navToggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  #main-header #nav-menu {
    display: block;
    position: fixed;
    z-index: 10;
    top: 60px;
    right: 0;
    background: #fff;
    left: 100%;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    opacity: 0;
    overflow-y: scroll;
  }
  #main-header #nav-menu.active {
    left: 0;
    opacity: 1;
  }
  #main-header.index-header:not(.is-animation) #nav-menu {
    top: 130px;
  }
  #main-header .navGlobal {
    padding-bottom: 150px;
  }
  #main-header .navGlobal .navGlobalIn {
    margin: 0 auto 20px;
    padding: 0;
    width: 100%;
    border-top: 1px solid #d1d7e1;
  }
  #main-header .navGlobal .navGlobalIn .nav-item {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #d1d7e1;
  }
  #main-header .navGlobal .navGlobalIn .nav-item > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #main-header .navGlobal .navGlobalIn .nav-item a {
    display: block;
    padding: 0 20px;
    width: calc(100% - 60px);
    color: #0073d7;
    font-size: 15px;
    font-weight: 700;
    line-height: 70px;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .open-subNav {
    display: inline-block;
    width: 60px;
    padding-top: 10px;
    line-height: 60px;
    text-align: center;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .open-subNav .icn-plus, #main-header .navGlobal .navGlobalIn .nav-item .open-subNav .icn-minus {
    width: 20px;
    height: 20px;
    fill: #0073d7;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .open-subNav .icn-minus {
    display: none;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .open-subNav.active .icn-plus {
    display: none;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .open-subNav.active .icn-minus {
    display: inline-block;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav {
    padding: 30px 0;
    display: none;
    border-top: 1px solid #d1d7e1;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item {
    line-height: 50px;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item:last-child {
    border-bottom: 0;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item a {
    line-height: 35px;
    color: #505e66;
    font-size: 15px;
    font-weight: 400;
  }
}

@media screen and (max-width: 1024px) and (max-width: 1024px) {
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item a {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 768px) {
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item a {
    line-height: 1.2;
    padding-top: 2.8vw;
    padding-bottom: 2.8vw;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .navGlobal .navGlobalIn .nav-item.link-page a {
    position: relative;
    width: 100%;
  }
  #main-header .navGlobal .navGlobalIn .nav-item.link-page a:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(/common/assets/img/common/icon_internal-link-B_bl.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    right: 20px;
    width: 20px;
    height: 20px;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-item__child {
    position: relative;
    width: 100%;
  }
  #main-header .navGlobal .navGlobalIn .nav-item .sub-nav-item__child:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    right: 20px;
    width: 20px;
    height: 20px;
  }
  #main-header .navGlobal .btn-contact {
    display: block;
    width: calc(100% - 40px);
  }
  #main-header .navToggle {
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  }
  #main-header .navToggle span {
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 2px #333;
    -webkit-transition: .35s ease-in-out;
    -o-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0;
    right: 0;
    margin: auto;
  }
  #main-header .navToggle span:nth-child(1) {
    top: 20px;
  }
  #main-header .navToggle span:nth-child(2) {
    top: 29px;
  }
  #main-header .navToggle span:nth-child(3) {
    top: 38px;
  }
  #main-header .navToggle.active span:nth-child(1) {
    top: 29px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
  #main-header .navToggle.active span:nth-child(2),
  #main-header .navToggle.active span:nth-child(3) {
    top: 29px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  #main-header.index-header:not(.is-animation) #nav-menu {
    top: 89px;
  }
}

@media screen and (max-width: 768px) {
  #main-header .navGlobal .navGlobalIn .nav-item.link-page a:before {
    width: 3vw;
    height: 3vw;
  }
}

@media screen and (max-width: 640px) {
  #main-header .navGlobal .navGlobalIn .nav-item.link-page a:before {
    width: 4vw;
    height: 4vw;
  }
}

@media screen and (max-width: 768px) {
  #main-header .navGlobal .navGlobalIn .nav-item.link-page .sub-nav .sub-nav-item__child:before {
    width: 3vw;
    height: 3vw;
  }
}

@media screen and (max-width: 640px) {
  #main-header .navGlobal .navGlobalIn .nav-item.link-page .sub-nav .sub-nav-item__child:before {
    width: 4vw;
    height: 4vw;
  }
}

/* footer banner */
.ft-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  display: none;
  width: 100%;
  background: #1e5f95;
  z-index: 9;
}

.ft-banner .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .ft-banner .inner {
    padding: 9px 20px;
    width: 730px;
  }
}

@media screen and (max-width: 768px) {
  .ft-banner .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 11.5px 6.66%;
  }
}

.ft-banner a {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  line-height: 48px;
}

@media screen and (min-width: 769px) {
  .ft-banner a {
    width: 200px;
  }
}

.ft-banner .btn-scroll {
  width: 50px;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .ft-banner .btn-scroll {
    position: absolute;
    right: 0;
    bottom: 14px;
    text-align: center;
  }
}

.ft-banner .btn-contact span:before {
  width: 18px;
  height: 18px;
}

@media screen and (min-width: 769px) {
  .ft-banner .btn-contact span {
    padding-left: 25px;
  }
}

@media screen and (max-width: 768px) {
  .ft-banner .btn-contact {
    width: calc(100% - 50px);
  }
  .ft-banner .btn-kameiten,
  .ft-banner .btn-faq {
    display: none;
  }
}

/* modal */
.remodal-overlay {
  background: rgba(0, 115, 215, 0.4);
}

@media screen and (min-width: 769px) {
  .remodal-close {
    top: -52px;
    right: 0;
    left: auto;
  }
  .remodal-close.close-btm {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .remodal-close {
    position: relative;
  }
  .remodal-close.close-btm {
    display: block;
    margin: 0 auto;
    padding-left: 4.66vw;
    width: auto;
    height: auto;
    color: #8ea4b2;
    font-weight: bold;
    font-size: 16px;
    font-size: 4.26667vw;
    /* 750 = design width, mobile only */
  }
  .remodal-close.close-btm:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 3.73vw;
    height: 3.73vw;
    background-color: #8ea4b2;
    -webkit-mask-image: url("/common/assets/img/common/icon_internal-link-B.svg");
    mask-image: url("/common/assets/img/common/icon_internal-link-B.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .remodal-close.close-top {
    display: none;
  }
}

.remodal-close:before {
  display: none;
}

.remodal-close .icn-close {
  fill: #fff;
  width: 36px;
  height: 36px;
}

.ft-contact-area {
  padding: 80px 0 90px;
  color: #fff;
  background: #1e5f95;
  border-top: 1px solid #d1d7e1;
  border-bottom: 1px solid #d1d7e1;
}

@media screen and (max-width: 768px) {
  .ft-contact-area {
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-right: 0px;
    padding-right: 0vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
    padding-left: 0px;
    padding-left: 0vw;
    /* 750 = design width, mobile only */
  }
}

.ft-contact-area .lead {
  margin-bottom: 50px;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 768px) {
  .ft-contact-area .lead {
    font-size: 17px;
    font-size: 4.53333vw;
    /* 750 = design width, mobile only */
  }
}

.ft-contact-area .flex-box {
  max-width: 960px\9;
  margin: 0 auto\9;
}

.ft-contact-area .box {
  padding: 0 5.4%;
  min-width: calc(340px + 10.8%);
  width: 50%\9;
  float: left\9;
}

@media screen and (max-width: 1024px) {
  .ft-contact-area .box {
    padding: 0 4%;
  }
}

@media screen and (max-width: 960px) {
  .ft-contact-area .box {
    min-width: calc(340px + 5%);
  }
}

@media screen and (max-width: 800px) {
  .ft-contact-area .box {
    width: 50%;
    min-width: 1px;
  }
}

@media screen and (max-width: 768px) {
  .ft-contact-area .box {
    padding: 0;
    width: 100%;
  }
}

.ft-contact-area .box .ttl {
  margin-bottom: 25px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .ft-contact-area .box .ttl {
    font-size: 17px;
    font-size: 4.53333vw;
    /* 750 = design width, mobile only */
  }
}

.ft-contact-area .boxR {
  border-left: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .ft-contact-area .boxR {
    margin-top: 40px;
    padding: 40px 0 0;
    border-left: 0;
    border-top: 1px solid #fff;
  }
}

.ft-contact-area .boxR .tel {
  margin-bottom: 20px;
}

.ft-contact-area .boxR .tel .telno {
  position: relative;
  padding-left: 40px;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .ft-contact-area .boxR .tel .telno {
    padding-left: 30px;
    font-size: 36px;
    font-size: 9vw;
    /* 750 = design width, mobile only */
  }
}

.ft-contact-area .boxR .tel .telno:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: #ff7d0a;
  content: '';
  z-index: 1;
}

.ft-contact-area .boxR .tel .telno:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  width: 28px;
  height: 28px;
  /*background-color: #fff;
					-webkit-mask-image: url("/common/assets/img/common/icon_telephone.svg");
					mask-image: url("/common/assets/img/common/icon_telephone.svg");*/
  background-image: url(/common/assets/img/common/icon_telephone_wh.png);
  background-image: url(/common/assets/img/common/icon_telephone_wh_ie.png) \9;
  margin-top: -14px\9;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
}

.ft-contact-area .boxR .tel .telno .telnoInner,
.ft-contact-area .boxR .tel .telno a {
  position: relative;
  z-index: 2;
}

/* ====================================================
Footer
==================================================== */
#main-footer {
  position: relative;
}

#main-footer .ft-nav {
  margin: 0 auto;
  padding: 0;
  max-width: 1140px;
  overflow: hidden\9;
}

@media screen and (min-width: 769px) {
  #main-footer .ft-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 70px 20px 100px;
  }
}

#main-footer .navGlobalIn {
  width: 20%\9;
  float: left\9;
}

#main-footer .navGlobalIn .nav-item {
  line-height: 2.4;
}

@media screen and (min-width: 769px) {
  #main-footer .navGlobalIn .nav-item + .nav-item {
    margin-top: 36px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
  #main-footer .navGlobalIn .nav-item + .nav-item {
    margin-top: 30px;
  }
}

#main-footer .navGlobalIn .nav-item a {
  position: relative;
}

@media screen and (min-width: 769px) {
  #main-footer .navGlobalIn .nav-item a,
  #main-footer .navGlobalIn .nav-item .nav-item__title {
    display: inline-block;
    color: #778d99;
    font-size: 15px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #main-footer .navGlobalIn .nav-item a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
}

@media screen and (min-width: 769px) {
  #main-footer .navGlobalIn .nav-item a.icn-link-after {
    padding-right: 20px;
  }
  #main-footer .navGlobalIn .nav-item a.icn-link-after:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 12px;
    height: 12px;
    /*background-color: #8ea4b2;
							-webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
							mask-image: url("/common/assets/img/common/icon_external-link.svg");*/
    background-image: url(/common/assets/img/common/icon_external-link_bgr.png);
    background-image: url(/common/assets/img/common/icon_external-link_bgr_ie.png) \9;
    margin-top: -6px\9;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 1260px) {
  #main-footer .navGlobalIn .nav-item a {
    font-size: 13px;
  }
  #main-footer .navGlobalIn .sub-nav-item .nav-item__title-sm {
    font-size: 13px;
  }
}

@media screen and (min-width: 769px) {
  #main-footer .navGlobalIn .nav-item.link-page {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  #main-footer .navGlobalIn .nav-item.link-page a {
    position: relative;
    width: 100%;
  }
  #main-footer .navGlobalIn .nav-item.link-page a:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(/common/assets/img/common/icon_internal-link-B_bl.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    right: 20px;
    width: 3vw;
    height: 3vw;
  }
}

@media screen and (max-width: 768px) and (max-width: 640px) {
  #main-footer .navGlobalIn .nav-item.link-page a:before {
    width: 4vw;
    height: 4vw;
  }
}

@media screen and (max-width: 768px) {
  #main-footer .navGlobalIn .nav-item.link-page--gray a {
    position: relative;
    width: 100%;
  }
  #main-footer .navGlobalIn .nav-item.link-page--gray a:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    right: 20px;
    width: 3vw;
    height: 3vw;
  }
}

@media screen and (max-width: 768px) and (max-width: 640px) {
  #main-footer .navGlobalIn .nav-item.link-page--gray a:before {
    width: 4vw;
    height: 4vw;
  }
}

#main-footer .navGlobalIn.navGroup02 {
  width: 15%\9;
}

#main-footer .navGlobalIn.navGroup03 {
  width: 25%\9;
}

#main-footer .navGlobalIn.navGroup05 .nav-item .sub-nav.pc {
  margin-top: 15px;
}

#main-footer .open-subNav {
  display: none;
}

@media screen and (max-width: 768px) {
  #main-footer .sub-nav {
    display: none;
  }
  #main-footer .open-subNav {
    display: block;
  }
  #main-footer .navGlobalIn {
    padding: 0;
    width: 100%;
  }
  #main-footer .navGlobalIn .nav-item {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #d1d7e1;
  }
  #main-footer .navGlobalIn .nav-item > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #main-footer .navGlobalIn .nav-item a,
  #main-footer .navGlobalIn .nav-item .nav-item__title {
    display: block;
    padding: 0 20px;
    width: calc(100% - 60px);
    font-size: 15px;
    font-weight: 700;
    line-height: 70px;
  }
  #main-footer .navGlobalIn .nav-item a.txGray {
    font-weight: 400;
  }
  #main-footer .navGlobalIn .nav-item .open-subNav {
    display: inline-block;
    width: 60px;
    padding-top: 10px;
    line-height: 60px;
    text-align: center;
  }
  #main-footer .navGlobalIn .nav-item .open-subNav .icn-plus, #main-footer .navGlobalIn .nav-item .open-subNav .icn-minus {
    width: 20px;
    fill: #0073d7;
  }
  #main-footer .navGlobalIn .nav-item .open-subNav .icn-minus {
    display: none;
  }
  #main-footer .navGlobalIn .nav-item .open-subNav.active .icn-plus {
    display: none;
  }
  #main-footer .navGlobalIn .nav-item .open-subNav.active .icn-minus {
    display: inline-block;
  }
  #main-footer .navGlobalIn .nav-item .sub-nav {
    padding: 30px 0;
    display: none;
    border-top: 1px solid #d1d7e1;
  }
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item {
    line-height: 50px;
  }
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item.mt20 {
    margin-top: 20px;
  }
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item:last-child {
    border-bottom: 0;
  }
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item a,
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item .nav-item__title {
    line-height: 1.2;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    width: 100%;
    padding-top: 2.8vw;
    padding-bottom: 2.8vw;
  }
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item a:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    right: 20px;
    width: 3vw;
    height: 3vw;
  }
}

@media screen and (max-width: 768px) and (max-width: 640px) {
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item a:before {
    width: 4vw;
    height: 4vw;
  }
}

@media screen and (max-width: 768px) {
  #main-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item a[target="_blank"]:before {
    background-image: url(/common/assets/img/common/icon_external-link_gr.png);
  }
}

@media screen and (max-width: 1024px) {
  #main-footer .nav-item .sub-nav-item a {
    color: #505e66;
  }
  #main-footer .nav-item a.txGray {
    color: #505e66 !important;
  }
}

.copy-wrap {
  padding: 30px 0;
}

@media screen and (min-width: 769px) {
  .copy-wrap {
    padding: 5px 0;
    border-top: 1px solid #d1d7e1;
  }
}

.copy-wrap .inner {
  max-width: 1160px;
}

.copy-wrap .copyright {
  font-size: 12px;
  display: inline-block\9;
  float: right\9;
}

@media screen and (max-width: 768px) {
  .copy-wrap .copyright {
    width: 100%;
    text-align: center;
  }
}

.copy-wrap .logo {
  margin-right: auto;
  width: 320px\9;
  float: left\9;
}

.copy-wrap .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .copy-wrap .logo {
    width: 100%;
    margin-bottom: 10px;
  }
  .copy-wrap .logo a {
    display: block;
    margin: 0 auto;
  }
}

.copy-wrap .logo span {
  display: block;
  padding-top: 8px;
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .copy-wrap .logo span {
    display: block;
    padding-top: 0;
    margin-left: 0;
  }
}

.page-top.sp a {
  display: block;
  padding: 30px;
  color: #8ba5b3;
  font-size: 14px;
  border-bottom: 1px solid #8ba5b3;
  background: #ebeff5;
}

.page-top.sp a span {
  position: relative;
  padding-right: 30px;
}

.page-top.sp a span:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #8ba5b3;
  border-left: 2px solid #8ba5b3;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
}

@media screen and (min-width: 769px) {
  .page-top.pc {
    display: block;
    position: absolute;
    bottom: 75px;
    right: 10px;
    width: 56px;
    text-align: center;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex.justify-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.col02 .item {
  width: calc((100% - 85px) / 2);
}

.flex.col02 .item:first-child {
  margin-right: 85px;
}

@media screen and (max-width: 768px) {
  .flex.col02 .item {
    width: 100%;
  }
  .flex.col02 .item:first-child {
    margin-right: 0;
  }
}

.flex.col04 .item {
  width: calc((100% - 45px) / 4);
  margin-right: 15px;
}

.flex.col04 .item:nth-child(4n+4) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .flex.col04 .item {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
  }
  .flex.col04 .item:nth-child(2n+2) {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) {
  .mbpc-45 {
    margin-bottom: 45px !important;
  }
  .mbpc-40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 768px) {
  .mbsp-25 {
    margin-bottom: 25px !important;
  }
  .mbsp-50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (min-width: 769px) {
  a[href^="tel"] {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
    cursor: text;
  }
}

/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
.breadcrumb .inner {
  max-width: 1160px;
}

/*見出しMODULE*/
.ttlCom01 {
  margin-bottom: 24px;
  font-size: 40px;
  font-size: 4rem;
}

@media screen and (max-width: 768px) {
  .ttlCom01 {
    margin-bottom: 8.2vw;
    font-size: 30px;
    font-size: 8vw;
    /* 750 = design width, mobile only */
  }
}

.ttlCom01 .cap {
  display: block;
  margin-bottom: 8px;
  color: rgba(139, 179, 235, 0.6);
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .ttlCom01 .cap {
    font-size: 24px;
    font-size: 6.4vw;
    /* 750 = design width, mobile only */
  }
}

.ttlCom02 {
  font-size: 21px;
  color: #333333;
  font-weight: bold;
  padding-left: 18px;
  border-left: 5px solid #0073d7;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .ttlCom02 {
    font-size: 18px;
    margin-bottom: 17px;
    border-left: 4px solid #0073d7;
  }
}

.ttlCom03 {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 12px;
}

.ttlCom03 span {
  color: #0073d7;
  font-size: 15px;
}

/*テキストMODULE*/
.bold {
  font-weight: bold;
  font-weight: 700;
}

.al-c {
  text-align: center;
}

.al-r {
  text-align: right;
}

.align-t {
  vertical-align: top;
}

.muli {
  font-family: Century Gothic, sans-serif;
}

.txBlue {
  color: #0073d7 !important;
}

.txGreen {
  color: #37a578;
}

.txtWh {
  color: #fff !important;
}

.txGray {
  color: #8ba5b3 !important;
}

.txtBasic {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .txtBasic {
    font-size: 16px;
    font-size: 4.26667vw;
    /* 750 = design width, mobile only */
  }
}


/*リンクMODULE*/
.linkCmn, .icn-external, .icn-external--right {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #ff7d0a;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .linkCmn, .icn-external, .icn-external--right {
    font-size: 16px;
    font-size: 4.26667vw;
    /* 750 = design width, mobile only */
    padding-left: 20px;
    padding-left: 5.33333vw;
    /* 750 = design width, mobile only */
  }
}

.linkCmn:before, .icn-external:before, .icn-external--right:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  /*background-color: $color-orange;
    -webkit-mask-image: url("/common/assets/img/common/icon_internal-link-A.svg");
    mask-image: url("/common/assets/img/common/icon_internal-link-A.svg");  */
  background-image: url(/common/assets/img/common/icon_internal-link-A_or.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

@media screen and (max-width: 768px) {
  .linkCmn:before, .icn-external:before, .icn-external--right:before {
    width: 4vw;
    height: 4vw;
    background-size: 3.73vw;
  }
}

.linkCmn.icnWh:before, .icnWh.icn-external:before, .icnWh.icn-external--right:before {
  background-image: url(/common/assets/img/common/icon_internal-link-A_wh.png);
}

.linkCmn.icn-link:before, .icn-link.icn-external:before, .icn-link.icn-external--right:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 25px;
  left: 0;
  width: 14px;
  height: 14px;
  /*background-color: #fff;
      -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
      mask-image: url("/common/assets/img/common/icon_external-link.svg");  */
  background-image: url(/common/assets/img/common/icon_internal-link-A_wh.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .linkCmn.icn-link:before, .icn-link.icn-external:before, .icn-link.icn-external--right:before {
    width: 3.2vw;
    height: 3.2vw;
    background-size: 3.2vw;
  }
}

.linkCmn.icn-link.icn-orange:before, .icn-link.icn-orange.icn-external:before, .icn-link.icn-orange.icn-external--right:before {
  background-image: url(/common/assets/img/common/icon_internal-link-A_or.png);
}

.support-area .sp.btn-detail .linkCmn[target="_blank"]:before, .support-area .sp.btn-detail .icn-external[target="_blank"]:before, .support-area .sp.btn-detail .icn-external--right[target="_blank"]:before,
.intro-head .linkCmn[target="_blank"]:before,
.intro-head .icn-external[target="_blank"]:before,
.intro-head .icn-external--right[target="_blank"]:before {
  background-image: url(/common/assets/img/common/icon_external-link_or.png) !important;
}

.icn-external, .icn-external--right {
  display: inline;
}

.icn-external:before, .icn-external--right:before {
  content: "";
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 25px;
  left: 0;
  width: 14px;
  height: 14px;
  /*background-color: #fff;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");  */
  background-image: url(/common/assets/img/common/icon_external-link_wh.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .icn-external:before, .icn-external--right:before {
    width: 3.2vw;
    height: 3.2vw;
    background-size: 3.2vw;
  }
}

.icn-external.icn-blue:before, .icn-blue.icn-external--right:before {
  background-image: url(/common/assets/img/common/icon_external-link_bl.png);
}

.icn-external.txt-icn-external, .txt-icn-external.icn-external--right {
  padding: 0 !important;
  font-weight: normal;
}

.icn-external.txt-icn-external:before, .txt-icn-external.icn-external--right:before {
  content: none;
}

.icn-external.txt-icn-external:after, .txt-icn-external.icn-external--right:after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 3px;
  background-image: url(/common/assets/img/common/icon_external-link_bl.png);
  background-size: cover;
  vertical-align: middle;
  content: '';
}

.icn-external--right {
  padding-left: 0;
  padding-right: 25px;
  font-size: 100%;
}

.icn-external--right.icn-blue:before {
  background-image: url(/common/assets/img/common/icon_external-link_bl.png);
  left: auto;
  right: 5px;
}

@media screen and (max-width: 768px) {
  .icn-external--right.icn-blue:before {
    width: 14px;
    height: 14px;
    background-size: 100%;
  }
}

@media screen and (max-width: 640px) {
  .icn-external--right.icn-blue:before {
    width: 3.2vw;
    height: 3.2vw;
    background-size: 3.2vw;
  }
}

/*ボタンMODULE*/
.btnBasic {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 13px 0;
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

@media screen and (max-width: 768px) {
  .btnBasic {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

.btnBasic.icn-link > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

.btnBasic.icn-link > span:before {
  width: 14px;
  height: 14px;
  margin-right: 14px;
  background-image: url(/common/assets/img/common/icon_external-link_wh.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  content: '';
}

@media screen and (max-width: 768px) {
  .btnBasic.icn-link > span:before {
    position: static;
    width: 3.2vw;
    height: 3.2vw;
    background-size: 3.2vw;
  }
}

.btnBasic.icn-link > span:not(:target) {
  display: none\9;
}

.btnBasic.icn-arrow > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

.btnBasic.icn-arrow > span:before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 14px;
  background-image: url(/common/assets/img/common/icon_internal-link-B_wh.png);
  background-image: url(/common/assets/img/common/icon_internal-link-B_wh_ie.png) \9;
  margin-top: -7px\9;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  content: '';
}

@media screen and (max-width: 768px) {
  .btnBasic.icn-arrow > span:before {
    position: static;
    width: 3.73vw;
    height: 3.73vw;
    background-size: 3.73vw;
  }
}

.btnBasic.icn-contact > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

.btnBasic.icn-contact > span:before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 14px;
  background-image: url(/common/assets/img/common/icon_mail_wh.png);
  background-image: url(/common/assets/img/common/icon_mail_wh_ie.png) \9;
  margin-top: -14px\9;
  background-size: 100%;
  margin-top: -7px\9;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  content: '';
}

@media screen and (max-width: 768px) {
  .btnBasic.icn-contact > span:before {
    position: static;
    width: 5vw;
    height: 5vw;
    background-size: 5vw;
  }
}

.btnBasic.icn-contact:hover > span:before {
  background-image: url(/common/assets/img/common/icon_mail_or.png);
  background-image: url(/common/assets/img/common/icon_mail_or_ie.png) \9;
}

.btnBasic.btn-1l {
  padding: 24px 10px;
}

.btnRed {
  color: red;
  background-color: #FFCCCC;
}

.btnBlue {
  background-color: #0073d7;
}

.btnGreen {
  background-color: #37a578;
}

.btn-Lt-Orange {
  background-color: #f58181;
}

.btnOrange {
  border: 2px solid #ff7d0a;
  background-color: #ff7d0a;
}

.cmn-orange-btn, .cmn-orange-btn--lower {
  height: 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: block\9;
  height: auto\9;
  padding: 20px 0 \9 !important;
}

@media screen and (max-width: 768px) {
  .cmn-orange-btn, .cmn-orange-btn--lower {
    height: 21.06vw;
  }
}

.cmn-orange-btn--lower {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 769px) {
  .cmn-orange-btn--lower.icn-arrow span {
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .cmn-orange-btn--lower.icn-arrow span {
    padding: 0;
  }
}

.cmn-orange-btn--lower.icn-arrow span:before {
  left: 0;
}

@media screen and (max-width: 768px) {
  .cmn-orange-btn--lower.icn-arrow span:before {
    left: 20px;
  }
}

.bg-gray {
  background: #ebeff5;
}

.btnCom1 {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background: #0073d7;
  padding: 0 10px;
  height: 27px;
  line-height: 27px;
}

.btnCom2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-size: 16px;
  font-size: 1.6rem;
  background: #ff7d0a;
  height: 70px;
  line-height: 66px;
  border: 2px solid #ff7d0a;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  max-width: 280px;
  width: 100%;
  font-weight: bold;
  font-family: inherit;
}

@media screen and (max-width: 768px) {
  .btnCom2 {
    max-width: 100%;
  }
}

.btnCom2::before {
  content: "";
  display: inline-block;
  margin-right: 14px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: #FFF;
  -webkit-mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
  mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.btnCom2 .rollover {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-size: 1.6rem;
  background: #ff7d0a;
  height: 70px;
  line-height: 70px;
  border: 2px solid #ff7d0a;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  max-width: 280px;
  width: 100%;
}

.btnCom2 .rollover::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: #FFF;
  -webkit-mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
  mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  margin-top: -4px;
}

@media screen and (max-width: 768px) {
  .btnCom2 {
    max-width: 320px;
  }
}

.btnCom3 {
  display: block;
  color: #8ba5b3;
  font-size: 16px;
  font-size: 1.6rem;
  background: transparent;
  height: 70px;
  line-height: 66px;
  border: 2px solid #8ba5b3;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  max-width: 280px;
  width: 100%;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .btnCom3 {
    max-width: 100%;
  }
}

.btnCom3::before {
  content: "";
  display: inline-block;
  margin-right: 14px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: #8ba5b3;
  -webkit-mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
          mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  margin-top: -4px;
}

.btnCom3 .rollover {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-size: 1.6rem;
  background: #ff7d0a;
  height: 70px;
  line-height: 70px;
  border: 2px solid #ff7d0a;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  max-width: 280px;
  width: 100%;
}

.btnCom3 .rollover::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: #FFF;
  -webkit-mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
  mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 768px) {
  .btnCom3 {
    max-width: 320px;
  }
}

.btn-contact {
  display: block;
  margin: 0 auto;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  line-height: 80px;
  text-align: center;
  border: 2px solid #ff7d0a;
  background: #ff7d0a;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

#body.isIE8 .ft-contact-area .btn-contact, #body.isIE9 .ft-contact-area .btn-contact, #body.isIE10 .ft-contact-area .btn-contact {
  line-height: 60px;
  width: 300px;
}

#body.isIE8 .ft-contact-area .btn-contact span, #body.isIE9 .ft-contact-area .btn-contact span, #body.isIE10 .ft-contact-area .btn-contact span {
  font-size: 18px;
}

#body.isIE8 .ft-contact-area .btn-contact + .btn-contact, #body.isIE9 .ft-contact-area .btn-contact + .btn-contact, #body.isIE10 .ft-contact-area .btn-contact + .btn-contact {
  margin-top: 16px;
}

.btn-contact span {
  position: relative;
  padding-left: 40px;
}

#body.isIE8 .ft-contact-area .btn-contact, #body.isIE9 .ft-contact-area .btn-contact, #body.isIE10 .ft-contact-area .btn-contact {
  text-align: left;
}

#body.isIE8 .ft-contact-area .btn-contact span, #body.isIE9 .ft-contact-area .btn-contact span, #body.isIE10 .ft-contact-area .btn-contact span {
  padding-left: 80px;
  display: block;
}

#body.isIE8 .ft-contact-area .btn-contact span:before, #body.isIE9 .ft-contact-area .btn-contact span:before, #body.isIE10 .ft-contact-area .btn-contact span:before {
  left: 30px;
}

.btn-contact span:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
  /*background-color: #fff;
      -webkit-mask-image: url("/common/assets/img/common/icon_mail.svg");
      mask-image: url("/common/assets/img/common/icon_mail.svg");  */
  background-image: url(/common/assets/img/common/icon_mail_wh.png);
  background-image: url(/common/assets/img/common/icon_mail_wh_ie.png) \9;
  margin-top: -14px\9;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.btn-Lyellow {
  display: block;
  margin: 0 auto;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #f9af3c;
  background: #f9af3c;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.btn-Lyellow span {
  position: relative;
  padding-left: 25px;
}

.btn-Lyellow span:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  /*background-color: #fff;*/
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.btn-kameiten span:before {
  /* -webkit-mask-image: url("/common/assets/img/common/icon_agreement.svg");
    mask-image: url("/common/assets/img/common/icon_agreement.svg");*/
  background-image: url(/common/assets/img/common/icon_agreement_wh.png);
}

.btn-faq span:before {
  /* -webkit-mask-image: url("/common/assets/img/common/icon_faq.svg");
    mask-image: url("/common/assets/img/common/icon_faq.svg");*/
  background-image: url(/common/assets/img/common/icon_faq_wh.png);
}

/*リストMODULE*/
/*ボックスMODULE*/
/*グリッドMODULE*/
/*フォームMODULE*/
.note-form {
  padding: 35px 40px 35px 45px;
  background: #ebeff5;
}

@media screen and (max-width: 768px) {
  .note-form {
    padding: 15px 20px;
  }
}

.note-form a {
  text-decoration: underline;
  color: #0073d7;
}

.note-form.blue {
  color: #1e5f95;
}

.fs15 {
  font-size: 15px;
  font-size: 1.5rem;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb30 {
  margin-bottom: 30px;
}

.mt20 {
  margin-top: 20px;
}

.is-pc .opacity-change:hover {
  -ms-filter: "alpha(opacity=60)";
  filter: alpha(opacity=60);
  opacity: .6;
}

.is-pc .border-change, .is-pc .border-change--blue {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.is-pc .border-change--blue:hover {
  border-color: #1e5f95;
}

.is-pc .linkCmn, .is-pc .icn-external, .is-pc .icn-external--right {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.is-pc .linkCmn:hover, .is-pc .icn-external:hover, .is-pc .icn-external--right:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.is-pc .btnBasic.icn-link:hover > span:before {
  background-image: url(/common/assets/img/common/icon_external-link_or.png);
}

.is-pc .btnBasic.icn-arrow:hover > span:before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_or.png);
  background-image: url(/common/assets/img/common/icon_internal-link-B_or_ie.png) \9;
}

.is-pc .btnOrange:not(.opacity-change):hover {
  color: #ff7d0a;
  background: none;
}

.is-pc .btnOrange:not(.opacity-change):hover > span:before {
  /*background-color: $color-orange;*/
}

.form-member .btnOrange:hover {
  color: #ff7d0a;
  background: none;
}

.form-member .btnOrange:hover > span:before {
  /*background-color: $color-orange;*/
}

.is-pc .btnOrange:disabled:hover {
  color: #8ba5b3;
  background: inherit;
}

.is-pc .btnOrange:disabled:hover > span:before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
}

.is-pc .btnCom2:hover {
  background: none;
  color: #ff7d0a;
}

.is-pc .btnCom2:hover::before {
  background-color: #ff7d0a;
}

.is-pc .btnCom2 .rollover:hover {
  background: #fff;
  color: #ff7d0a;
}

.is-pc .btnCom2 .rollover:hover::before {
  background-color: #ff7d0a;
}

.is-pc .btnCom3:hover {
  background: #8ba5b3;
  color: #fff;
}

.is-pc .btnCom3:hover:before {
  background: #fff;
}

.is-pc .btnCom3:hover .rollover:hover {
  background: none;
  color: #ff7d0a;
}

.is-pc .btnCom3:hover .rollover:hover::before {
  background-color: #ff7d0a;
}

.is-pc .btn-contact:not(.opacity-change):hover {
  color: #ff7d0a;
  background: none;
}

.is-pc .btn-contact:not(.opacity-change):hover span:before {
  /*background-color: $color-orange;*/
  background-image: url(/common/assets/img/common/icon_mail_or.png);
  background-image: url(/common/assets/img/common/icon_mail_or_ie.png) \9;
  margin-top: -14px\9;
}

.is-pc .btn-Lyellow:not(.opacity-change):hover {
  color: #f9af3c;
  background: none;
}

.is-pc .btn-Lyellow:not(.opacity-change):hover span:before {
  /*background-color: #f9af3c;*/
}

.is-pc .btn-Lyellow:not(.opacity-change):hover {
  color: #f9af3c;
  background: none;
}

.is-pc .btn-Lyellow:not(.opacity-change):hover span:before {
  /*background-color: #f9af3c;*/
}

.is-pc .btn-kameiten:not(.opacity-change):hover span:before {
  background-image: url(/common/assets/img/common/icon_agreement_or.png);
}

.is-pc .btn-faq:not(.opacity-change):hover span:before {
  background-image: url(/common/assets/img/common/icon_faq_or.png);
}

.tab-ttl-box {
  margin: 0 auto 40px;
  max-width: 1120px;
}

@media screen and (max-width: 768px) {
  .tab-ttl-box {
    margin-bottom: 30px;
    margin-bottom: 8vw;
    /* 750 = design width, mobile only */
    padding: 0 6.66%;
  }
}

.tab-btn-area {
  width: 360px;
}

@media screen and (max-width: 768px) {
  .tab-btn-area {
    width: 100%;
  }
}

.tab-btn-area > div {
  width: 50%;
  color: #8ba5b3;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #8ba5b3;
  background: #fff;
  cursor: pointer;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

@media screen and (max-width: 768px) {
  .tab-btn-area > div {
    font-size: 3.5vw;
  }
}

.tab-btn-area > div span {
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .tab-btn-area > div span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}

.tab-btn-area > div span:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .tab-btn-area > div span:before {
    position: static;
    margin-right: 5px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.tab-btn-area > div.active, .tab-btn-area > div:hover {
  color: #ffffff;
}

.tab-btn-area > div.active span:before, .tab-btn-area > div:hover span:before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_wh.png);
}

.tab-btn-area > div.tab-01.active, .tab-btn-area > div.tab-01:hover {
  border-color: #0073d7;
  background: #0073d7;
}

.tab-btn-area > div.tab-02.active, .tab-btn-area > div.tab-02:hover {
  border-color: #4b95de;
  background-color: #4b95de;
}

@media screen and (min-width: 769px) {
  .contact-modal {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

@media screen and (min-width: 769px) {
  .contact-modal-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 656px;
    margin: 33px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .contact-modal-btns {
    margin: 40px 0 28px;
  }
}

@media screen and (min-width: 769px) {
  .contact-modal-btns__item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding-top: 8px;
    padding-bottom: 5px;
  }
}

@media screen and (min-width: 769px) {
  .contact-modal-btns__item:first-child {
    padding-right: 9.15%;
  }
}

@media screen and (min-width: 769px) {
  .contact-modal-btns__item:last-child {
    padding-left: 9.15%;
    border-left: 1px solid #a9bdcd;
  }
}

@media screen and (max-width: 768px) {
  .contact-modal-btns__item:last-child {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #a9bdcd;
  }
}

.contact-modal-btns__txt {
  margin-top: 13px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .contact-modal-btns__txt {
    margin-top: 20px;
  }
}

[data-remodal-target] {
  cursor: pointer;
}

/* ====================================================
Index
==================================================== */
#main-header.index-header {
  background: none;
}

@media screen and (min-width: 1025px) {
  #main-header.index-header .function-wrap .function .font-size .btn-size {
    color: #fff;
    border: 1px solid #fff;
    background: none;
  }
  #main-header.index-header .function-wrap .function .font-size .btn-size.active {
    color: #989995;
    background: #fff;
  }
  #main-header.index-header .function-wrap .function .search-box {
    border: 1px solid #fff;
  }
  #main-header.index-header .function-wrap .function .search-box .btn-submit #icn-submit {
    fill: #fff;
  }
  #main-header.index-header .function {
    padding-top: 17px;
  }
  #main-header.index-header .navGlobalIn .nav-item a {
    color: #fff;
  }
  #main-header.index-header .navGlobalIn .nav-item a.nav-link:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(/common/assets/img/common/icon_internal-link-B_wh_dwn.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    left: 0;
    width: 14px;
    height: 14px;
  }
  #main-header.index-header .navGlobalIn .nav-item.nav-personal a {
    color: #fff;
    border: 1px solid #0073d7;
    background: #0073d7;
  }
  #main-header.index-header .navGlobalIn .nav-item.nav-personal a:after {
    /*background-color: #fff;
							-webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
							mask-image: url("/common/assets/img/common/icon_external-link.svg");*/
    background-image: url(/common/assets/img/common/icon_external-link_wh.png);
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-header.index-header .navGlobalIn .nav-item.nav-personal a:hover {
    opacity: .6;
  }
  #main-header.index-header.is-animation .function-wrap .function .font-size .btn-size {
    color: #0073d7;
    border: 1px solid #0073d7;
    background: none;
  }
  #main-header.index-header.is-animation .function-wrap .function .font-size .btn-size.active {
    color: #fff;
    background: #0073d7;
  }
  #main-header.index-header.is-animation .function-wrap .function .search-box {
    border: 1px solid #0073d7;
  }
  #main-header.index-header.is-animation .function-wrap .function .search-box .btn-submit #icn-submit {
    fill: #0073d7;
  }
  #main-header.index-header.is-animation .navGlobal {
    padding: 0 25px;
  }
  #main-header.index-header.is-animation .navGlobalIn .nav-item.nav-tx a:not(.sub-nav-item__child):not(.sub-nav-box) {
    color: #0073d7;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  #main-header.index-header.is-animation .navGlobalIn .nav-item.nav-tx a:not(.sub-nav-item__child):not(.sub-nav-box) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

@media screen and (min-width: 1025px) {
  #main-header.index-header.is-animation .navGlobalIn .nav-item.nav-tx a:not(.sub-nav-item__child):not(.sub-nav-box):before {
    background-image: url(/common/assets/img/common/icon_internal-link-B_bl_dwn.png);
  }
}

#main-header.index-header.is-animation {
  background: #fff;
}

@media screen and (min-width: 1025px) {
  #main-header.index-header.is-animation {
    height: 81px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header {
    border-bottom: 0;
  }
  #main-header.index-header .btn-parsonal {
    border: 1px solid #0073d7;
    background: #0073d7;
    color: #ffffff;
    border-radius: 30px;
  }
  #main-header.index-header .btn-parsonal:before {
    content: '';
    display: inline-block;
    position: absolute;
    background-image: url(/common/assets/img/common/icon_external-link_wh.png);
    background-size: 12px;
    background-position: right 0 center;
    background-repeat: no-repeat;
  }
  #main-header.index-header .navToggle span {
    border-bottom: solid 2px #fff;
  }
  #main-header.index-header.is-animation {
    background: #fff;
    border-bottom: 1px solid #d1d7e1;
  }
  #main-header.index-header.is-animation .navToggle span {
    border-bottom: solid 2px #333;
  }
}

.alert-box {
  position: relative;
  background: #0073d7;
  color: #ffffff;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: -20px;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .alert-box {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.bankpay-banner {
  position: absolute;
  bottom: 120px;
  width: 100%;
  text-align: right;
}

.bankpay-banner__link:hover {
  opacity: .9;
}

@media screen and (min-width: 1024px) and (max-width: 1024px) {
  .bankpay-banner {
    text-align: right;
  }
}

@media screen and (min-width: 769px) and (max-width: 993px) {
  .bankpay-banner {
    bottom: 138px;
  }
}

@media screen and (max-width: 768px) {
  .bankpay-banner {
    bottom: 50px;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1024px) {
  .bankpay-banner img {
    width: 95%;
  }
}

.bankpay-banner__link {
  display: inline-block;
}

.alert-box__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 22px 45px 38px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .alert-box__heading {
    padding: 3vw 5vw 5vw;
  }
}

.alert-box__cat {
  margin: 0;
  background: #ffffff;
  border-radius: 16.5px;
  padding: 3px 20px;
  color: #0073d7;
}

.alert-box__catBox{
  margin: 0 33px 0 35px;
}


@media screen and (max-width: 768px) {
  .alert-box__cat {
    margin: 0 0 0 5vw;
    padding: 1vw 5vw;
  }
}

@media screen and (max-width: 768px) {
  .alert-box__ttl {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 1vw;
  }
}

#page-index .page-main {
  position: relative;
  height: 100vh;
  border-bottom: 1px solid #d1d7e1;
}

@media screen and (min-width: 1025px) {
  #page-index .page-main {
    background: url(/common/assets/img/index/img_main.jpg) no-repeat top center;
    background-size: cover;
  }
}

@media screen and (max-width: 1024px) {
  #page-index .page-main {
    background: url(/common/assets/img/index/img_main_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

#page-index .page-main .inner {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #page-index .page-main .inner {
    padding-top: 30vw;
    position: static;
    transform: translateY(0);
  }
}

#page-index .page-main .inner .lead-txt {
  color: #fff;
}

#page-index .page-main .inner .lead-txt .ttl-main {
  margin-bottom: 50px;
  padding-top: 30px;
  font-size: 68px;
  font-size: 6.8rem;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 1500px) {
  #page-index .page-main .inner .lead-txt .ttl-main {
    font-size: 50px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 1280px) {
  #page-index .page-main .inner .lead-txt .ttl-main {
    padding-top: 8vw;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  #page-index .page-main .inner .lead-txt .ttl-main {
    font-size: 28px;
    font-size: 7.46667vw;
    /* 750 = design width, mobile only */
  }
  #page-index .page-main .inner .lead-txt .ttl-main .mark {
    display: none;
  }
}

#page-index .page-main .inner .lead-txt p {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.8;
}

@media screen and (max-width: 1280px) {
  #page-index .page-main .inner .lead-txt p {
    font-size: 7.5px;
    font-size: 2vw;
    /* 750 = design width, mobile only */
  }
}

@media screen and (max-width: 768px) {
  #page-index .page-main .inner .lead-txt p {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .page-main .btn_scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#page-index .page-main .btn_scroll__inner {
  display: block;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
}

#page-index .sec-service {
  padding: 90px 0 80px;
  background: #f7f9fb;
}

@media screen and (max-width: 768px) {
  #page-index .sec-service {
    padding-top: 70px;
    padding-top: 18.66667vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-service .img {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  #page-index .sec-service .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 46.875%;
  }
}

@media screen and (max-width: 1024px) {
  #page-index .sec-service .img .pc {
    display: none !important;
  }
  #page-index .sec-service .img .sp {
    display: block !important;
  }
}

@media screen and (min-width: 1025px) {
  #page-index .sec-service .txt-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 50%;
  }
}

@media screen and (min-width: 1280px) {
  #page-index .sec-service .txt-box {
    padding-left: 6.25%;
  }
}

#page-index .sec-service .txt-box .box-ttl {
  margin-bottom: 30px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.8;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-service .txt-box .box-ttl {
    margin: 40px 0 20px;
  }
}

@media screen and (max-width: 768px) {
  #page-index .sec-service .txt-box .box-ttl {
    margin-top: 30px;
    margin-top: 8vw;
    /* 750 = design width, mobile only */
    margin-bottom: 25px;
    margin-bottom: 6.66667vw;
    /* 750 = design width, mobile only */
    font-size: 22px;
    font-size: 5.86667vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-service .txt-box .txt-desc {
  position: relative;
  margin-bottom: 25px;
  margin-bottom: 6.66667vw;
  /* 750 = design width, mobile only */
}

@media screen and (min-width: 769px) {
  #page-index .sec-service .txt-box .txt-desc {
    margin-bottom: 30px;
  }
  #page-index .sec-service .txt-box .txt-desc .txtBasic {
    width: calc(100% - 160px);
  }
}

@media screen and (max-width: 768px) {
  #page-index .sec-service .txt-box .txt-desc img {
    display: none;
  }
}

#page-index .sec-service .merit-content {
  margin: 0 auto;
  padding-top: 40px;
  max-width: 860px;
}

@media screen and (max-width: 768px) {
  #page-index .sec-service .merit-content {
    padding-top: 45px;
  }
}

#page-index .sec-service .merit-content .merit-list .merit-list-item {
  position: relative;
  width: 24%;
  height: auto;
  margin-bottom: 10px;
  border: 2px solid #4195e1;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  #page-index .sec-service .merit-content .merit-list .merit-list-item {
    width: 48%;
  }
}

#page-index .sec-service .merit-content .merit-list .merit-list-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

#page-index .sec-service .merit-content .merit-list .merit-list-item > div {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 中央寄せ */
  text-align: center;
  padding: 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

#page-index .sec-service .merit-content .merit-list .merit-list-item > div:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 auto;
  width: 32%;
  height: 32%;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

#page-index .sec-service .merit-content .merit-list .merit-list-item > div .icn-svg {
  content: '';
  display: inline-block;
  position: absolute;
  top: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 auto;
  width: 32%;
  height: 32%;
}

#page-index .sec-service .merit-content .merit-list .merit-list-item.ttl {
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.8;
  background: #4195e1;
}

#page-index .sec-service .merit-content .merit-list .merit-list-item.ttl .ttl-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (max-width: 768px) {
  #page-index .sec-service .merit-content .merit-list .merit-list-item.ttl .ttl-txt {
    font-size: 20px;
    font-size: 5.33333vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-service .merit-content .merit-list .merit-list-item .txtBasic {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 17%;
  width: 100%;
  color: #4195e1;
}

@media screen and (max-width: 768px) {
  #page-index .sec-service .merit-content .merit-list .merit-list-item .txtBasic {
    font-size: 13px;
    font-size: 3.46667vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-service .merit-content .merit-list .merit-list-item .txtBasic.txt1L {
  bottom: 24%;
}

@media screen and (min-width: 1100px) {
  #page-index .sec-service .merit-content .merit-1 {
    -webkit-transform: translateX(-5.8%);
    -ms-transform: translateX(-5.8%);
    transform: translateX(-5.8%);
  }
}

#page-index .sec-service .merit-content .merit-1 .merit-list-item .icn-svg {
  fill: #4195e1;
}

@media screen and (max-width: 768px) {
  #page-index .sec-service .merit-content .merit-1 {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1100px) {
  #page-index .sec-service .merit-content .merit-2 {
    -webkit-transform: translateX(6.628%);
    -ms-transform: translateX(6.628%);
    transform: translateX(6.628%);
  }
}

#page-index .sec-service .merit-content .merit-2 .merit-list-item {
  border: 2px solid #0073d7;
}

#page-index .sec-service .merit-content .merit-2 .merit-list-item .icn-svg {
  fill: #0073d7;
}

#page-index .sec-service .merit-content .merit-2 .merit-list-item.ttl {
  background: #0073d7;
}

#page-index .sec-service .merit-content .merit-2 .merit-list-item .txtBasic {
  color: #0073d7;
}

#page-index .sec-howtouse {
  padding: 80px 0;
  border-top: 1px solid #d1d7e1;
  border-bottom: 1px solid #d1d7e1;
  background: #e1effb;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse {
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
  #page-index .sec-howtouse .inner {
    padding: 0;
  }
}

#page-index .sec-howtouse .ttl-box {
  margin: 0 auto 40px;
  max-width: 1120px;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .ttl-box {
    margin-bottom: 30px;
    margin-bottom: 8vw;
    /* 750 = design width, mobile only */
    padding: 0 6.66%;
  }
}

#page-index .sec-howtouse .ttlCom01 {
  margin-bottom: 0;
  width: calc(100% - 380px);
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .ttlCom01 {
    margin-bottom: 30px;
    width: 100%;
  }
}

#page-index .sec-howtouse .tab-btn-box {
  width: 360px;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .tab-btn-box {
    width: 100%;
  }
}

#page-index .sec-howtouse .tab-btn-box > div {
  width: 50%;
  color: #8ba5b3;
  line-height: 50px;
  text-align: center;
  border: 1px solid #8ba5b3;
  background: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .tab-btn-box > div {
    font-size: 3.5vw;
  }
}

#page-index .sec-howtouse .tab-btn-box > div span {
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .tab-btn-box > div span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}

#page-index .sec-howtouse .tab-btn-box > div span:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .tab-btn-box > div span:before {
    position: static;
    margin-right: 5px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

#page-index .sec-howtouse .tab-btn-box > div.tab-payment.active, #page-index .sec-howtouse .tab-btn-box > div.tab-payment:hover {
  color: #fff;
  border: 1px solid #0073d7;
  background: #0073d7;
}

#page-index .sec-howtouse .tab-btn-box > div.tab-payment.active span:before, #page-index .sec-howtouse .tab-btn-box > div.tab-payment:hover span:before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_wh.png);
}

#page-index .sec-howtouse .tab-btn-box > div.tab-cashout.active, #page-index .sec-howtouse .tab-btn-box > div.tab-cashout:hover {
  color: #fff;
  border: 1px solid #37a578;
  background: #37a578;
}

#page-index .sec-howtouse .tab-btn-box > div.tab-cashout.active span:before, #page-index .sec-howtouse .tab-btn-box > div.tab-cashout:hover span:before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_wh.png);
}

#page-index .sec-howtouse .list-flow {
  margin: 0 auto;
  max-width: 1120px;
}

@media screen and (min-width: 769px) {
  #page-index .sec-howtouse .list-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#page-index .sec-howtouse .list-flow .list-item {
  width: calc(25% - 1px);
  background: #fff;
}

#page-index .sec-howtouse .list-flow .list-item img {
  width: 100%;
}

#page-index .sec-howtouse .list-flow .list-item .txt-box {
  position: relative;
  padding: 20px 7.14%;
  min-height: 220px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 94px auto;
}

@media screen and (max-width: 960px) {
  #page-index .sec-howtouse .list-flow .list-item .txt-box {
    min-height: 220px;
  }
}

#page-index .sec-howtouse .list-flow .list-item .txt-box .tag {
  margin-bottom: 10px;
  width: 80px;
  color: #fff;
  font-size: 15px;
  line-height: 33px;
  text-align: center;
  background: #0073d7;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .list-flow .list-item .txt-box .tag {
    display: inline-block;
    margin-bottom: 10px;
    margin-bottom: 2.66667vw;
    /* 750 = design width, mobile only */
    width: auto;
    padding: 1.33vw 4vw;
    font-size: 14px;
    font-size: 3.73333vw;
    /* 750 = design width, mobile only */
    line-height: 1;
  }
}

#page-index .sec-howtouse .list-flow .list-item .txtBasic {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  #page-index .sec-howtouse .list-flow .list-item .txtBasic {
    font-size: 4vw;
  }
}

#page-index .sec-howtouse .tab-payment .list-item.item01 .txt-box {
  background-image: url(/common/assets/img/index/txt_no01_bl.png);
}

#page-index .sec-howtouse .tab-payment .list-item.item02 .txt-box {
  background-image: url(/common/assets/img/index/txt_no02_bl.png);
}

#page-index .sec-howtouse .tab-payment .list-item.item03 .txt-box {
  background-image: url(/common/assets/img/index/txt_no03_bl.png);
}

#page-index .sec-howtouse .tab-payment .list-item.item04 .txt-box {
  background-image: url(/common/assets/img/index/txt_no04_bl.png);
}

#page-index .sec-howtouse .tab-payment .slick-prev:before, #page-index .sec-howtouse .tab-payment .slick-next:before {
  color: #0073d7;
}

#page-index .sec-howtouse .tab-payment .slick-dots li.slick-active button:before {
  color: #0073d7;
}

#page-index .sec-howtouse .tab-cashout .list-item .txt-box .tag {
  background: #37a578;
}

#page-index .sec-howtouse .tab-cashout .list-item.item01 .txt-box {
  background-image: url(/common/assets/img/index/txt_no01_gr.png);
}

#page-index .sec-howtouse .tab-cashout .list-item.item02 .txt-box {
  background-image: url(/common/assets/img/index/txt_no02_gr.png);
}

#page-index .sec-howtouse .tab-cashout .list-item.item03 .txt-box {
  background-image: url(/common/assets/img/index/txt_no03_gr.png);
}

#page-index .sec-howtouse .tab-cashout .list-item.item04 .txt-box {
  background-image: url(/common/assets/img/index/txt_no04_gr.png);
}

#page-index .sec-howtouse .tab-cashout .slick-prev:before {
  background-image: url(/common/assets/img/common/icn-arrow-left_gr.png);
}

#page-index .sec-howtouse .tab-cashout .slick-next:before {
  background-image: url(/common/assets/img/common/icn-arrow-right_gr.png);
}

#page-index .sec-howtouse .tab-cashout .slick-dots li.slick-active button:before {
  color: #37a578;
}

#page-index .sec-howtouse .js-tab_content {
  display: none;
  margin: 0 auto;
  font-size: 16px;
}

#page-index .sec-howtouse .js-tab_content.active {
  display: block;
}

#page-index .sec-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page-index .sec-flex-box .sec-img {
  width: 41.66%;
  min-width: 360px;
  min-height: 600px;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-flex-box .sec-img {
    display: none;
  }
}

#page-index .sec-flex-box .txt-box {
  width: 41.66%;
  max-width: 800px;
  padding: 0 4.21vw 0;
}

@media screen and (min-width: 1367px) {
  #page-index .sec-flex-box .txt-box {
    margin-left: auto;
  }
}

@media screen and (max-width: 1280px) {
  #page-index .sec-flex-box .txt-box {
    padding: 0 0 0 4.21vw;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1366px) {
  #page-index .sec-flex-box .txt-box {
    margin-left: 12vw;
  }
}

@media screen and (max-width: 1024px) {
  #page-index .sec-flex-box .txt-box {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #page-index .sec-flex-box .txt-box {
    padding: 0 6.66%;
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-flex-box .txt-box .txtBasic {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #page-index .sec-flex-box .txt-box .txtBasic {
    margin-bottom: 30px;
  }
}

#page-index .sec-flex-box .txt-box .btnOrange {
  width: 210px;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  #page-index .sec-flex-box .txt-box .btnOrange {
    padding: 0;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #page-index .sec-flex-box .txt-box .btnOrange span:before {
    margin-top: 0;
  }
}

#page-index .sec-flex-box .links {
    margin-top: 20px;
}

#page-index .sec-flex-box .links a {
    margin-top: 10px;
    margin-right: 50px;
    margin-left: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #page-index .sec-flex-box .links a {
    margin-right: 15px;
  }
}

#page-index .sec-individual {
  background: #91b3d1;
  color: #fff;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  #page-index .sec-individual {
    padding: 80px 0;
  }
}

#page-index .sec-individual .ttlCom01 {
  color: #fff;
}

#page-index .sec-individual .ttlCom01 .cap {
  color: rgba(255, 255, 255, 0.6);
}

#page-index .sec-individual .sec-img {
  background: url(/common/assets/img/index/img_individual.jpg) no-repeat center center;
  background-size: cover;
}

#page-index .sec-information {
  padding: 80px 0;
  background: #f7f9fb;
  border-top: 1px solid #d1d7e1;
  border-bottom: 1px solid #d1d7e1;
}

@media screen and (max-width: 768px) {
  #page-index .sec-information {
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-information .flex-box {
  margin: 0 auto;
  max-width: 1120px;
}

#page-index .sec-information .ttl-box {
  width: 25%;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-information .ttl-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 25px;
    width: 100%;
  }
  #page-index .sec-information .ttl-box .ttlCom01 {
    margin-bottom: 0;
  }
}

#page-index .sec-information .info-list {
  width: 75%;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-information .info-list {
    width: 100%;
  }
}

#page-index .sec-admission {
  background: #fff;
}

#page-index .sec-admission .sec-img {
  background: url(/common/assets/img/index/img_admission_pc.jpg) no-repeat right center;
  background-size: cover;
}

#page-index .sec-admission__image {
  display: none;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-admission__image {
    display: block;
  }
}

#page-index .sec-admission .txt-box {
  margin-left: 0 !important;
  margin-right: auto;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-admission .txt-box {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  #page-index .sec-admission .txt-box {
    padding-top: 40px;
    padding-top: 10.66667vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-about {
  background: #e1effb;
  border-top: 1px solid #d1d7e1;
  border-bottom: 1px solid #d1d7e1;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-about.sec-flex-box .txt-box {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  #page-index .sec-about.sec-flex-box .txt-box {
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
}

#page-index .sec-about .sec-img {
  background: url(/common/assets/img/index/img_about.jpg) no-repeat center center;
  background-size: cover;
}

#page-index .bnr-area img {
  width: 100%;
}

#page-index .bnr-area .bnr-box {
  margin: 0 auto;
  padding: 25px 20px 0;
  max-width: 1160px;
}

@media screen and (max-width: 768px) {
  #page-index .bnr-area .bnr-box {
    padding: 20px 6.66% 0;
  }
}
#page-admission_campaign_index .bnr-box2 {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 90px;
    max-width: 1160px;
}
@media screen and (max-width: 768px) {
  #page-admission_campaign_index .bnr-box2 {
    padding: 20px 6.66% 0;
  }
}

#page-index .bnr-area .flex-box {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  #page-index .bnr-area .flex-box {
    padding: 20px 6.66%;
  }
}

#page-index .bnr-area .flex-box a {
    display: inline-block;
    width: 32.14%;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
  #page-index .bnr-area .flex-box a {
    margin-bottom: 20px;
    width: 100%;
  }
  #page-index .bnr-area .flex-box a:last-child {
    margin-bottom: 0;
  }
}

#page-index .bnr-area .flex-box.bnr-2col a + a {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  #page-index .bnr-area .flex-box.bnr-2col a + a {
    margin-left: 0;
  }
}

.info-list {
  border-top: 1px solid #a9bdcd;
}

.info-list .info-list-item {
  border-bottom: 1px solid #a9bdcd;
  margin-bottom: -1px;
}

.info-list .info-list-wrap{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;

  padding: 25px 60px 25px 0;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .info-list .info-list-wrap {
    padding-right: 50px;
    /* padding-right: 13.33333vw; */
    padding-right: 10vw;
    /* 750 = design width, mobile only */
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.info-list-item>a:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 22px;
  width: 18px;
  height: 18px;
  background-image: url(/common/assets/img/common/icon_internal-link-A_bl.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.info-list-item>a.externallinks:before{
  content: '';
  width: 15px ;
  height: 15px;
  display: inline-block;
  position: absolute;
  top: 12px;
  bottom: 0;
  right: 24px;
  margin: auto;
  pointer-events: none;
  background-image: url(/common/assets/img/top/icon_external-link_bl.png);
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .info-list-item>a.externallinks:before{
    right: 2.66vw;
  }
}
.info-list-item>a.not_link:before {
  background-image: none;
}

@media screen and (max-width: 768px) {
  .info-list-item>a:before {
    right: 2.66vw;
    width: 4.8vw;
    height: 4.8vw;
    background-size: 4.8vw;
  }
}

.info-list>a[target="_blank"]:not(.not-external-link):before {
  background-image: url(/common/assets/img/common/icon_external-link_bl.png);
}

.info-list .info-list-wrap .date {
  width: 76px;
  min-width: 76px;
  margin-right: 33px;
  padding-top: 6px;
}

@media screen and (max-width: 768px) {
  .info-list .info-list-wrap .date {
    width: 100%;
    margin-bottom: 15px;
    line-height: 1;
    padding: 0;
  }
}

.info-list .info-list-wrap .label {
  display: inline-block;
  padding: 6px 16px;
  color: #fff;
  text-align: center;
  background: #0073d7;
  border-radius: 50px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .info-list .info-list-wrap .label {
    font-size: 11px;
  }
}
.label + .label{
  margin-left: 7px;
}

.info-list .info-list-wrap .txtBasic {
  padding-top: 6px;
  padding-left: 30px;
  /* width: calc(100% - 202px); */
}

@media screen and (max-width: 768px) {
  .info-list .info-list-wrap .txtBasic {
    margin-top: 10px;
    padding: 0;
    width: 100%;
  }
}

.info-list .info-list-wrap .txtBasic span a{
  text-decoration: underline;
  transition: 0.3s;
}
.info-list .info-list-wrap .txtBasic span a:hover{
  cursor: pointer;
  opacity: 0.6 !important;
} 

.info-list .disabled {
  /* pointer-events: none; */
}

.info-list .info-list-wrap.disabled:before {
  display: none;
}

.remodal#pop-jdebit,
.remodal#pop-contact {
  max-width: 1120px;
  background: none;
}

@media screen and (min-width: 769px) {
  .remodal#pop-jdebit,
  .remodal#pop-contact {
    padding: 52px 0;
  }
}

@media screen and (max-width: 768px) {
  .remodal#pop-jdebit,
  .remodal#pop-contact {
    padding: 0;
  }
}

.remodal#pop-jdebit .box-ttl,
.remodal#pop-contact .box-ttl {
  margin-bottom: 20px;
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  .remodal#pop-jdebit .box-ttl,
  .remodal#pop-contact .box-ttl {
    margin-bottom: 30px;
    margin-bottom: 8vw;
    /* 750 = design width, mobile only */
    font-size: 24px;
    font-size: 6.4vw;
    /* 750 = design width, mobile only */
  }
}

.remodal#pop-jdebit .remodal-inner,
.remodal#pop-contact .remodal-inner {
  position: relative;
  padding: 70px 5.35% 60px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .remodal#pop-jdebit .remodal-inner,
  .remodal#pop-contact .remodal-inner {
    padding: 50px 3.66%;
  }
}

.remodal#pop-jdebit .ability .ability-item,
.remodal#pop-contact .ability .ability-item {
  position: relative;
  margin: 70px 0 0;
  padding: 0 5px 50px;
  width: 31%;
  max-width: 296px;
  min-height: 445px;
  border: 1px solid #0073d7;
}

@media screen and (max-width: 768px) {
  .remodal#pop-jdebit .ability .ability-item,
  .remodal#pop-contact .ability .ability-item {
    margin-bottom: 30px;
    margin-bottom: 8vw;
    /* 750 = design width, mobile only */
    padding-bottom: 40px;
    padding-bottom: 10.66667vw;
    /* 750 = design width, mobile only */
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }
}

.remodal#pop-jdebit .ability .ability-item .icn-img,
.remodal#pop-contact .ability .ability-item .icn-img {
  position: relative;
  margin: -70px auto 0;
  width: 140px;
  height: 140px;
  border: 1px solid #0073d7;
  border-radius: 50%;
  background: #fff;
}

.remodal#pop-jdebit .ability .ability-item .icn-img .icn,
.remodal#pop-contact .ability .ability-item .icn-img .icn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}

.remodal#pop-jdebit .ability .ability-item .ttl,
.remodal#pop-contact .ability .ability-item .ttl {
  margin: 40px 0;
  color: #0073d7;
  font-size: 24px;
  font-size: 2.4rem;
  min-height: 90px;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .remodal#pop-jdebit .ability .ability-item .ttl,
  .remodal#pop-contact .ability .ability-item .ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .remodal#pop-jdebit .ability .ability-item .ttl,
  .remodal#pop-contact .ability .ability-item .ttl {
    margin: 30px 0;
    min-height: auto;
    font-size: 20px;
    font-size: 5.33333vw;
    /* 750 = design width, mobile only */
  }
}

.remodal#pop-jdebit .ability .ability-item .ttl strong,
.remodal#pop-contact .ability .ability-item .ttl strong {
  font-weight: bold;
}

.remodal#pop-jdebit .ability .ability-item .ttl .cap,
.remodal#pop-contact .ability .ability-item .ttl .cap {
  display: block;
  margin-top: 3px;
  color: #a9bdcd;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .remodal#pop-jdebit .ability .ability-item .ttl .cap,
  .remodal#pop-contact .ability .ability-item .ttl .cap {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .remodal#pop-jdebit .ability .ability-item .txtBasic,
  .remodal#pop-contact .ability .ability-item .txtBasic {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.remodal#pop-jdebit .ability .ability-item .btnBasic,
.remodal#pop-contact .ability .ability-item .btnBasic {
  margin-top: 25px;
  max-width: 230px;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .remodal#pop-jdebit .ability .ability-item .btnBasic,
  .remodal#pop-contact .ability .ability-item .btnBasic {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .remodal#pop-jdebit .ability .ability-item .btnBasic,
  .remodal#pop-contact .ability .ability-item .btnBasic {
    max-width: 85%;
  }
}

.remodal#pop-jdebit .ability .ability-item #icn_passbook,
.remodal#pop-contact .ability .ability-item #icn_passbook {
  fill: #0073d7;
}

.remodal#pop-jdebit .ability .ability-item.item-green,
.remodal#pop-contact .ability .ability-item.item-green {
  border: 1px solid #37a578;
}

.remodal#pop-jdebit .ability .ability-item.item-green .icn-img,
.remodal#pop-contact .ability .ability-item.item-green .icn-img {
  border: 1px solid #37a578;
}

.remodal#pop-jdebit .ability .ability-item.item-green .icn-atm,
.remodal#pop-contact .ability .ability-item.item-green .icn-atm {
  fill: #37a578;
}

.remodal#pop-jdebit .ability .ability-item.item-green .ttl,
.remodal#pop-contact .ability .ability-item.item-green .ttl {
  color: #37a578;
}

.remodal#pop-jdebit .ability .ability-item.item-orange,
.remodal#pop-contact .ability .ability-item.item-orange {
  border: 1px solid #f58181;
}

.remodal#pop-jdebit .ability .ability-item.item-orange .icn-img,
.remodal#pop-contact .ability .ability-item.item-orange .icn-img {
  border: 1px solid #f58181;
}

.remodal#pop-jdebit .ability .ability-item.item-orange #icn-prepaid,
.remodal#pop-contact .ability .ability-item.item-orange #icn-prepaid {
  fill: #f58181;
}

.remodal#pop-jdebit .ability .ability-item.item-orange .ttl,
.remodal#pop-contact .ability .ability-item.item-orange .ttl {
  color: #f58181;
}

@media screen and (max-width: 768px) {
  .list-slider .list-item a {
    outline: none;
  }
  .slick-prev, .slick-next {
    width: 9.5vw;
    height: 9.5vw;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: 52vw;
  }
  .slick-next {
    right: 10px;
  }
  .slick-next:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: calc(48% + 2px);
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/common/assets/img/common/icn-arrow-right_bl.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .slick-prev {
    left: 10px;
    z-index: 1;
  }
  .slick-prev:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/common/assets/img/common/icn-arrow-left_bl.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .slick-prev:before, .slick-next:before {
    font-size: 43px;
    opacity: 1;
  }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0;
  }
  .slick-dots {
    position: static;
    margin-top: 10px;
  }
  .slick-dots li {
    margin: 0 3px;
  }
  .slick-dots li button {
    padding: 0;
    width: 16px;
    height: 16px;
  }
  .slick-dots li button:before {
    font-size: 8px;
    color: #a9bdcd;
    opacity: 1;
  }
  .slick-dots li.slick-active button:before {
    font-size: 16px;
    opacity: 1;
  }
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 10px);
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
    opacity: 0;
  }
}

#page-member_index .page-head {
  background-image: url("/common/assets/img/member/mv-pc_me.png");
}

@media screen and (max-width: 768px) {
  #page-member_index .page-head {
    background-image: url("/common/assets/img/member/mv-sp_me.png");
  }
}

.content-member {
  padding: 105px 0 100px;
  border-bottom: 1px solid #d1d7e1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .content-member {
    padding: 65px 0 60px;
  }
}

.content-member .form-member {
  background: #fff;
  padding: 80px 80px 60px;
}

@media screen and (max-width: 768px) {
  .content-member .form-member {
    background: none;
    padding: 0;
  }
}

.content-member .form-member label {
  font-weight: bold;
  color: #333333;
  margin-bottom: 40px;
  text-align: center;
  display: block;
  line-height: 1.6;
  font-size: 15px;
  font-size: 1.5rem;
}

.content-member .form-member .form-page {
  margin-bottom: 40px;
}

.content-member .form-member .form-page .group-input {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  padding-left: 13%;
}

@media screen and (max-width: 1100px) {
  .content-member .form-member .form-page .group-input {
    padding-left: 6%;
  }
}

@media screen and (max-width: 768px) {
  .content-member .form-member .form-page .group-input {
    display: block;
    padding-left: 0;
  }
}

.content-member .form-member .form-page .group-input label {
  font-weight: bold;
  margin-bottom: 0;
  width: 115px;
  padding-right: 10px;
  text-align: left;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .content-member .form-member .form-page .group-input label {
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
  }
}

.content-member .form-member .form-page .group-input input {
  border: 1px solid #abbecb;
  height: 50px;
  padding: 10px;
  width: 58%;
  background: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .content-member .form-member .form-page .group-input input {
    width: 100%;
  }
}

.content-member .form-member .form-page .group-input:nth-child(2) {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .content-member .form-member .form-page .group-input:nth-child(2) {
    margin-bottom: 40px;
  }
}

.content-member .form-member .note-form {
  padding: 35px 40px;
  background: #ebeff5;
}

@media screen and (max-width: 768px) {
  .content-member .form-member .note-form {
    padding: 30px 25px;
  }
}

.content-member .form-member .note-form .note {
  color: #eb0000;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .content-member .form-member .note-form .note {
    margin-bottom: 10px;
  }
}

.content-member .form-member .note-form .note span {
  margin-top: 3px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 3px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .content-member .form-member .note-form .note span {
    width: auto;
    margin-top: 6px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.content-member .form-member .note-form .note span img {
  /*object-fit: contain;*/
  width: 20px;
  height: 20px;
}

.content-member .form-member .note-form .file {
  padding-left: 10px;
  color: #1e5f95;
  line-height: 1.8;
  font-size: 15px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .content-member .form-member .note-form .file {
    padding-left: 3px;
  }
}

.content-member .form-member .note-form .file > span {
  display: inline-block\9;
  vertical-align: top\9;
}

.content-member .form-member .note-form .file > div {
  display: inline-block\9;
}

.content-member .form-member .note-form .file a {
  color: #0073d7;
  text-decoration: underline;
  text-underline-position: under;
  font-size: 15px;
  font-size: 1.5rem;
}

.content-member .form-member .note-form .file a img {
  width: 14px;
}

.box-debit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .box-debit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.box-debit .img-debit {
  width: 21.5%;
  float: left\9;
  max-height: 243px\9;
  border: 1px solid #a9bdcd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  padding: 3.125% 3.57% 3.57%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .box-debit .img-debit {
    padding: 40px;
  }
}

.box-debit .img-debit:before {
  display: none\9;
}

.box-debit .img-debit img {
  width: 100%;
  width: auto\9;
  height: auto;
}

@media screen and (max-width: 768px) {
  .box-debit .img-debit {
    width: 240px;
    height: 240px;
    margin-bottom: 30px;
  }
}

.box-debit .ct-debit {
  padding-left: 40px;
  width: calc(100% - 21.5%);
  width: 78.5%\9;
  float: left\9;
}

@media screen and (max-width: 768px) {
  .box-debit .ct-debit {
    width: 100%;
    display: block;
    padding-left: 0;
  }
}

.box-debit .ct-debit p {
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 15px;
  font-size: 1.5rem;
}

.link-style01 {
  position: relative;
  color: #ff7d0a;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block\9;
}

.link-style01:before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 2px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  /*background-color: #ff7d0a;
		-webkit-mask-image: url("/common/assets/img/common/icon_internal-link-A.svg");*/
  background-image: url(/common/assets/img/common/icon_internal-link-A_or.png);
  background-image: url(/common/assets/img/common/icon_internal-link-A_or_ie.png) \9;
  background-size: 100% auto;
}

.txt-member {
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .txt-member {
    margin-bottom: 25px;
  }
}

.list-down-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 468px) {
  .list-down-file {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .list-down-file:before {
    content: none;
  }
}

.list-down-file li {
  background: #fff;
  margin-right: 40px;
  width: 25%;
  float: left\9;
}

@media screen and (min-width: 769px) {
  .list-down-file li {
    max-width: 200px;
  }
}

.list-down-file li:last-child {
  margin-right: 0;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .list-down-file li {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  .list-down-file li {
    width: calc(100% / 2 - 5px);
    margin-bottom: 10px;
    margin-right: 5px;
  }
  .list-down-file li:nth-child(even) {
    margin-right: 0;
  }
}

@media screen and (max-width: 468px) {
  .list-down-file li {
    width: 48.5%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .list-down-file li:nth-child(2n) {
    margin-right: 0;
  }
}

.list-down-file li a {
  display: block;
  height: 100%;
  text-align: center;
  padding: 35px 15px;
  border: 2px solid #a9bdcd;
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
}

.list-down-file li a span {
  display: block;
}

@media screen and (max-width: 768px) {
  .list-down-file li a {
    padding: 20px 5px 15px;
  }
}

.list-down-file li a img {
  margin-bottom: 16px;
  width: 60px;
}

@media screen and (max-width: 768px) {
  .list-down-file li a img {
    margin-bottom: 12px;
  }
}

.list-down-file li a .ttl-file {
  color: #1e5f95;
  font-weight: bold;
}

.list-down-file li a .ttl-file span {
  font-weight: normal;
}

.box-infoUser {
  padding: 105px 0 120px;
}

@media screen and (max-width: 768px) {
  .box-infoUser {
    padding: 65px 0 60px;
  }
}

.list-infoUser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden\9;
}

.list-infoUser:after {
  content: ""\9;
  display: table\9;
  clear: both\9;
}

.list-infoUser li {
  background: #fff;
  width: 31.65%;
  width: 29.65%\9;
  float: left\9;
  margin-right: 2.525%;
  padding: 50px 38px;
}

.list-infoUser li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .list-infoUser li {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 769px) {
  .list-infoUser li {
    -ms-flex-preferred-size: 31.65%;
        flex-basis: 31.65%;
    max-width: 31.65%;
  }
}

@media screen and (max-width: 768px) {
  .list-infoUser li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
    padding: 40px 25px;
  }
}

.list-infoUser li .ttl-info {
  color: #0073d7;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .list-infoUser li .ttl-info {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
}

.list-infoUser li .ttl-info:before {
  content: '';
  width: 32px;
  position: absolute;
  height: 2px;
  background: #a9bdcd;
  bottom: 0;
  left: 0;
}

.list-infoUser li .txt-info {
  color: #333333;
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .list-infoUser li .txt-info {
    margin-bottom: 15px;
  }
}

#page-member_index .inner {
  max-width: 1160px;
}

#page-member_index .group-input {
  max-width: 960px\9;
}

#page-member_index .group-input label {
  width: 115px\9;
  float: left\9;
  margin-top: 15px\9;
}

#page-member_index .group-input input[type="text"] {
  width: 484px\9;
  float: left\9;
}

#body.isIE8 #main-header .nav-personal-link {
  background: transparent url(/common/assets/img/common/bg_btn_personal.png) center center no-repeat !important;
  border: 0 !important;
}

.only-oldIE {
  display: none !important;
}

#body.isIE8 .sub-nav--01 .sub-nav-box--lower,
#body.isIE8 .sub-nav--last .sub-nav-box--lower,
#body.isIE9 .sub-nav--01 .sub-nav-box--lower,
#body.isIE9 .sub-nav--last .sub-nav-box--lower,
#body.isIE10 .sub-nav--01 .sub-nav-box--lower,
#body.isIE10 .sub-nav--last .sub-nav-box--lower {
  padding-top: 24px !important;
}

#body.isIE8 .sub-nav--02 .sub-nav-box--lower,
#body.isIE9 .sub-nav--02 .sub-nav-box--lower,
#body.isIE10 .sub-nav--02 .sub-nav-box--lower {
  padding-top: 24px !important;
}

#body.isIE8 .only-oldIE,
#body.isIE9 .only-oldIE,
#body.isIE10 .only-oldIE {
  display: block !important;
}

#body.isIE8 .only-not-oldIE,
#body.isIE9 .only-not-oldIE,
#body.isIE10 .only-not-oldIE {
  display: none !important;
}

#body.isIE8 #main-footer .content-fs .rollover > img,
#body.isIE8 #main-footer .content-fs .rollover > span,
#body.isIE9 #main-footer .content-fs .rollover > img,
#body.isIE9 #main-footer .content-fs .rollover > span {
  display: inline-block;
  vertical-align: middle;
}

#body.isIE8 #main-footer .copyright,
#body.isIE9 #main-footer .copyright {
  margin-top: 13px;
}

#body.isIE9 .page-main-ttl,
#body.isIE10 .page-main-ttl {
  margin-top: 0;
}

#body.isIE9 #main-header .nav-personal-link:after,
#body.isIE9 .blue#main-header .navGlobalIn .nav-item a.nav-link::before,
#body.isIE9 .icn-arrow.btnBasic > span::before,
#body.isIE9 .btn-contact span::before,
#body.isIE9 #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item__child::before,
#body.isIE10 #main-header .nav-personal-link:after,
#body.isIE10 .blue#main-header .navGlobalIn .nav-item a.nav-link::before,
#body.isIE10 .icn-arrow.btnBasic > span::before,
#body.isIE10 .btn-contact span::before,
#body.isIE10 #main-header .navGlobal .navGlobalIn .nav-item .sub-nav .sub-nav-item__child::before {
  top: 0;
  height: 100%;
  margin-top: 0;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  background-position: 0 center;
}

#body.isIE10 .navGlobal {
  display: block !important;
}

#body.isIE10 #main-header .sub-nav {
  font-size: 0;
}

#body.isIE10 #main-header .sub-nav-box {
  display: inline-block;
  width: 50%;
}

.login-error {
  margin-bottom: 30px;
  color: #eb0000;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.page-wrap {
  background: #f7f9fb;
  padding: 137px 0 0;
}

@media screen and (max-width: 1024px) {
  .page-wrap {
    padding-top: 60px;
  }
}

.page-head {
  position: relative;
  height: 245px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 1920px 245px\9;
}

.page-head.dark {
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .page-head.dark {
    border-bottom: solid 1px #d5dbe3;
  }
}

.page-head.dark .page-main-ttl {
  color: #333;
}

@media screen and (max-width: 768px) {
  .page-head {
    height: 48vw;
    border-bottom: 1px solid #d1d7e1;
  }
}

.page-head .page-main-ttl {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: -70px\9;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  font-size: 4rem;
  color: #FFF;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-head .page-main-ttl {
    font-size: 30px;
    font-size: 8vw;
    /* 750 = design width, mobile only */
  }
}

.page-head .page-main-ttl .en {
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  color: #8db3e8;
  font-family: Century Gothic, sans-serif;
  margin-bottom: -10px;
}

.page-head .page-main-ttl .sub {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .page-head .page-main-ttl .en {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: -10px;
    /* 750 = design width, mobile only */
  }

  .page-head .page-main-ttl .sub {
    display: block;
    font-size: 3.5vw;
  }
}

.breadcrumb {
  background: #ebeff5;
  border-top: 1px solid #d1d7e1;
  border-bottom: 1px solid #d1d7e1;
  font-size: 12px;
  font-size: 1.2rem;
  color: #505e66;
  padding: 18px 0;
}

.breadcrumb i {
  padding: 0 3px;
}

.breadcrumb a {
  color: #0073d7;
  text-decoration: underline;
}

.breadcrumb a:hover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.breadcrumb a:hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.page-ttl {
  text-align: center;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .page-ttl {
    font-size: 26px;
    font-size: 6.93333vw;
    /* 750 = design width, mobile only */
    margin-bottom: 50px;
  }
}

.page-sub-ttl {
  position: relative;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 13px;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .page-sub-ttl {
    font-size: 20px;
    font-size: 5.33333vw;
    /* 750 = design width, mobile only */
    margin-bottom: 6.66vw;
  }
}

.page-sub-ttl::before, .page-sub-ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  height: 3px;
}

.page-sub-ttl::before {
  background: #d1d7e1;
  width: 100%;
  z-index: 0;
}

.page-sub-ttl::after {
  width: 100%;
  max-width: 280px;
  background: #0073d7;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .page-sub-ttl::after {
    width: 70px;
  }
}

.col2-link {
  overflow: hidden;
  margin-bottom: 45px;
}

.col2-link li, .col2-link > div {
  width: 50%;
  float: left;
  border: 1px solid #8ba5b3;
  font-size: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.col2-link li a, .col2-link li span, .col2-link > div a, .col2-link > div span {
  position: relative;
  display: block;
  height: 75px;
  line-height: 75px;
  text-align: center;
  color: #8ba5b3;
  font-weight: bold;
  background: #FFF;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 768px) {
  .col2-link li a, .col2-link li span, .col2-link > div a, .col2-link > div span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    line-height: 50px;
    padding-left: 0;
  }
}

.col2-link li a::before, .col2-link li span::before, .col2-link > div a::before, .col2-link > div span::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 3px;
  margin-right: 9px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 768px) {
  .col2-link li a::before, .col2-link li span::before, .col2-link > div a::before, .col2-link > div span::before {
    position: static;
    margin: 0 5px 0 0;
  }
}

.col2-link li.active, .col2-link li:hover, .col2-link > div.active, .col2-link > div:hover {
  border-color: #0073d7;
}

.col2-link li.active a, .col2-link li.active span, .col2-link li:hover a, .col2-link li:hover span, .col2-link > div.active a, .col2-link > div.active span, .col2-link > div:hover a, .col2-link > div:hover span {
  color: #FFF;
  background: #0073d7;
}

.col2-link li:first-child.active, .col2-link li:first-child:hover, .col2-link > div:first-child.active, .col2-link > div:first-child:hover {
  border-color: #0066C1;
}

.col2-link li:first-child.active a, .col2-link li:first-child.active span, .col2-link li:first-child:hover a, .col2-link li:first-child:hover span, .col2-link > div:first-child.active a, .col2-link > div:first-child.active span, .col2-link > div:first-child:hover a, .col2-link > div:first-child:hover span {
  color: #FFF;
  background: #0066C1;
}

.col2-link li.active a::before, .col2-link li.active span::before, .col2-link li:hover a::before, .col2-link li:hover span::before, .col2-link > div.active a::before, .col2-link > div.active span::before, .col2-link > div:hover a::before, .col2-link > div:hover span::before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_wh.png);
}

.col2-link li:last-child.active, .col2-link li:last-child:hover, .col2-link > div:last-child.active, .col2-link > div:last-child:hover {
  border-color: #4195e1;
}

.col2-link li:last-child.active a, .col2-link li:last-child.active span, .col2-link li:last-child:hover a, .col2-link li:last-child:hover span, .col2-link > div:last-child.active a, .col2-link > div:last-child.active span, .col2-link > div:last-child:hover a, .col2-link > div:last-child:hover span {
  background: #4195e1;
}

/* ====================================================
Admission-common
==================================================== */
#page-admission_index .inner,
#page-admission_join_index .inner,
#page-admission_campaign_index .inner {
  max-width: 1160px;
}

#page-admission_index .page-head,
#page-admission_join_index .page-head,
#page-admission_campaign_index .page-head {
  background-image: url(/common/assets/img/admission/mv-pc_ad.png);
}

@media screen and (max-width: 768px) {
  #page-admission_index .page-head,
  #page-admission_join_index .page-head,
  #page-admission_campaign_index .page-head {
    background-image: url(/common/assets/img/admission/mv-sp_ad.png);
  }
}

#page-admission_index .section-wrap,
#page-admission_join_index .section-wrap,
#page-admission_campaign_index .section-wrap {
  padding: 105px 0 100px;
  border-bottom: 1px solid #d1d7e1;
}

@media screen and (max-width: 768px) {
  #page-admission_index .section-wrap,
  #page-admission_join_index .section-wrap,
  #page-admission_campaign_index .section-wrap {
    padding: 65px 0 60px;
  }
}

#page-admission_index .intro-txt,
#page-admission_join_index .intro-txt,
#page-admission_campaign_index .intro-txt {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-txt,
  #page-admission_join_index .intro-txt,
  #page-admission_campaign_index .intro-txt {
    margin-bottom: 45px;
    font-size: 16px;
    font-size: 4.26667vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .intro-txt a,
#page-admission_join_index .intro-txt a,
#page-admission_campaign_index .intro-txt a {
  color: #0073d7;
  text-decoration: underline;
}

#page-admission_index .intro-txt a .icn-pdf,
#page-admission_join_index .intro-txt a .icn-pdf,
#page-admission_campaign_index .intro-txt a .icn-pdf {
  width: 15px;
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-txt a .icn-pdf,
  #page-admission_join_index .intro-txt a .icn-pdf,
  #page-admission_campaign_index .intro-txt a .icn-pdf {
    width: 4vw;
  }
}

#page-admission_index .intro-img,
#page-admission_join_index .intro-img,
#page-admission_campaign_index .intro-img {
  margin: 0 auto 90px;
  text-align: center;
  max-width: 980px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-img,
  #page-admission_join_index .intro-img,
  #page-admission_campaign_index .intro-img {
    max-width: 90%;
    margin-bottom: 60px;
  }
}

#page-admission_index .note-box,
#page-admission_join_index .note-box,
#page-admission_campaign_index .note-box {
  background: #ebeff5;
  padding: 40px;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1e5f95;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  #page-admission_index .note-box,
  #page-admission_join_index .note-box,
  #page-admission_campaign_index .note-box {
    padding: 8vw 6.66vw;
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .note-box p,
#page-admission_join_index .note-box p,
#page-admission_campaign_index .note-box p {
  margin-bottom: 15px;
}

#page-admission_index .note-box p.mb-none,
#page-admission_join_index .note-box p.mb-none,
#page-admission_campaign_index .note-box p.mb-none {
  margin-bottom: 0;
}

#page-admission_index .ico-link,
#page-admission_join_index .ico-link,
#page-admission_campaign_index .ico-link {
  color: #ff7d0a;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

#page-admission_index .ico-link::before,
#page-admission_join_index .ico-link::before,
#page-admission_campaign_index .ico-link::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 2px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: #ff7d0a;
  -webkit-mask-image: url(/common/assets/img/common/icon_internal-link-A.svg);
  mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
}

#page-admission_index .ico-link[target="_blank"]::before,
#page-admission_join_index .ico-link[target="_blank"]::before,
#page-admission_campaign_index .ico-link[target="_blank"]::before {
  width: 14px;
  height: 14px;
  -webkit-mask-image: url(/common/assets/img/common/icon_external-link.svg);
  mask-image: url(/common/assets/img/common/icon_external-link.svg);
}

.orange-btn {
  max-width: 268px;
  margin: 0 auto;
  text-align: center;
  /* a{
    display: block;
    color: #FFF;
    @include font-size(16);
    background: $color-orange;
    height: 70px;
    line-height: 66px;
    border: 2px solid $color-orange;
    transition: all .2s ease;
    max-width: 280px;
    width:100%;
	  font-weight: bold;
    @include mq() {
      max-width: 100%;
    }
    &::before{
      content: "";
      display: inline-block;
      margin-right: 10px;
      width: 14px;
      height: 14px;
      vertical-align: middle;
      background-color: #FFF;
      -webkit-mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
      mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
      transition: all .2s ease;
     @include mq() {
        width: 14px;
        height: 14px;
    }
   }
    &:hover{
      background: none;
      color: $color-orange;
      &::before{
        background-color: $color-orange;
      }
    }*/
  /*.rollover{
    font-weight: bold;
    display: block;
    color: #FFF;
    @include font-size(16);
    background: $color-orange;
    height: 70px;
    line-height: 70px;
    border: 2px solid $color-orange;
    transition: all .2s ease;
    max-width: 280px;
    width:100%;
    &::before{
      content: "";
      display: inline-block;
      margin-right: 15px;
      width: 14px;
      height: 14px;
      vertical-align: middle;
      background-color: #FFF;
      -webkit-mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
      mask-image: url(/common/assets/img/common/icon_internal-link-B.svg);
      transition: all .2s ease;
    }
    &:hover{
      background: none;
      color: $color-orange;
      &::before{
        background-color: $color-orange;
      }
    }
  }*/
}

@media screen and (max-width: 768px) {
  .orange-btn {
    max-width: 100%;
  }
}

.orange-btn a {
  padding: 23px 10px;
}

@media screen and (max-width: 768px) {
  .orange-btn a {
    padding-top: 25px;
    padding-top: 6.66667vw;
    /* 750 = design width, mobile only */
    padding-right: 0px;
    padding-right: 0vw;
    /* 750 = design width, mobile only */
    padding-bottom: 25px;
    padding-bottom: 6.66667vw;
    /* 750 = design width, mobile only */
    padding-left: 0px;
    padding-left: 0vw;
    /* 750 = design width, mobile only */
  }
}

.orange-btn button[type="submit"] {
  padding: 23px 10px;
}

@media screen and (max-width: 768px) {
  .orange-btn button[type="submit"] {
    padding-top: 25px;
    padding-top: 6.66667vw;
    /* 750 = design width, mobile only */
    padding-right: 0px;
    padding-right: 0vw;
    /* 750 = design width, mobile only */
    padding-bottom: 25px;
    padding-bottom: 6.66667vw;
    /* 750 = design width, mobile only */
    padding-left: 0px;
    padding-left: 0vw;
    /* 750 = design width, mobile only */
  }
}

.orange-btn button:disabled {
  border: 2px solid #8ba5b3;
  background-color: transparent;
  color: #8ba5b3;
}

.orange-btn button:disabled span:before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
}

.orange-btn button:disabled:hover {
  cursor: inherit;
}

.orange-btn button:disabled:hover span:before {
  background-image: url(/common/assets/img/common/icon_internal-link-B_gr.png);
}

.orange-btn .submit-btn {
  padding-top: 0;
  padding-bottom: 0;
  height: 69px;
}

@media screen and (max-width: 768px) {
  .orange-btn .submit-btn {
    height: 21.06vw;
  }
}

/* ====================================================
Admission-index
==================================================== */
#page-admission_index .intro-bl-wrap {
  background: #4195e1;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-bl-wrap {
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-right: 0px;
    padding-right: 0vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
    padding-left: 0px;
    padding-left: 0vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .intro-bl-wrap .ttl-col {
  padding-right: 1%;
  width: 46.4%;
  min-height: 70px;
}

@media screen and (max-width: 1024px) {
  #page-admission_index .intro-bl-wrap .ttl-col {
    width: 100%;
    padding-bottom: 30px;
  }
}

#page-admission_index .intro-bl-wrap .intro-col {
  width: 53.6%;
  padding-left: 55px;
  font-size: 16px;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  border-left: 1px solid #ffffff;
}

@media screen and (max-width: 1024px) {
  #page-admission_index .intro-bl-wrap .intro-col {
    width: 100%;
    border-top: 1px solid #ffffff;
    border-left: none;
    padding: 25px 0 0;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-bl-wrap .intro-col {
    font-size: 16px;
    font-size: 4.26667vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .intro-bl-wrap .en-ttl {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 10px;
  font-family: Century Gothic, sans-serif;
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-bl-wrap .en-ttl {
    font-size: 20px;
    font-size: 5.33333vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .intro-bl-wrap .intro-ttl {
  font-weight: bold;
  font-size: 36px;
  font-size: 3.6rem;
  color: #FFF;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-bl-wrap .intro-ttl {
    font-size: 26px;
    font-size: 6.93333vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .intro-bl-wrap .intro-txt {
  color: #FFF;
  font-weight: bold;
  text-align: left;
  font-size: 21px;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .intro-bl-wrap .intro-txt {
    font-size: 18px;
    font-size: 4.8vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-can {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-can {
    padding: 60px 0 50px;
  }
}

@media screen and (max-width: 1024px) {
  #page-admission_index .sec-can .page-ttl {
    margin-bottom: 105px;
  }
}

#page-admission_index .sec-can .can-list {
  text-align: center;
  font-size: 0;
}

#page-admission_index .sec-can .can-list li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 26.43%;
  margin: 70px 1.5% 0;
  background: #FFF;
  font-size: 15px;
  font-size: 1.5rem;
  border: 1px solid #FFF;
  padding: 0 20px 40px;
}

@media screen and (max-width: 1000px) {
  #page-admission_index .sec-can .can-list li {
    width: 32%;
    margin: 0 0 0 2%;
  }
  #page-admission_index .sec-can .can-list li:first-of-type {
    margin-left: 0;
  }
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  #page-admission_index .sec-can .can-list li {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-can .can-list li {
    width: 100%;
    margin: 0 0 100px;
    padding: 0 10px 40px;
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
  #page-admission_index .sec-can .can-list li:last-of-type {
    margin-bottom: 0;
  }
}

#page-admission_index .sec-can .can-list li .ico-img {
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
  width: 140px;
}

#page-admission_index .sec-can .can-list li .icn-img {
  position: relative;
  margin: -70px auto 0;
  width: 140px;
  height: 140px;
  border: 1px solid #0073d7;
  border-radius: 50%;
  background: #fff;
}

#page-admission_index .sec-can .can-list li .icn-img .icn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}

#page-admission_index .sec-can .can-list li .icn-img #icn-passbook {
  fill: #0073d7;
}

#page-admission_index .sec-can .can-list li .ttl {
  display: table;
  margin-top: 40px;
  width: 100%;
  font-weight: bold;
  font-size: 2.4rem;
  font-size: 24px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-can .can-list li .ttl {
    font-size: 20px;
    font-size: 5.33333vw;
    /* 750 = design width, mobile only */
    margin: 30px 0;
  }
}

#page-admission_index .sec-can .can-list li .ttl .ttl-inner {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  #page-admission_index .sec-can .can-list li .ttl .ttl-inner br {
    display: none;
  }
}

#page-admission_index .sec-can .can-list li .ttl .en {
  display: block;
  color: #a9bdcd;
  padding-top: 3px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-can .can-list li .ttl .en {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-can .can-list li .txt {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  #page-admission_index .sec-can .can-list li .txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-can .can-list li .txt {
    font-size: 16px;
    font-size: 4.26667vw;
    /* 750 = design width, mobile only */
    margin-bottom: 25px;
  }
}

#page-admission_index .sec-can .can-list li .list-btn {
  max-width: 225px;
  margin: 0 auto;
  display: block;
  padding: 13px 0;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-can .can-list li .list-btn {
    max-width: 90%;
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-can .can-list li.list01 {
  border-color: #0073d7;
}

#page-admission_index .sec-can .can-list li.list01 .ttl {
  color: #0073d7;
}

#page-admission_index .sec-can .can-list li.list01 .list-btn {
  background: #0073d7;
}

#page-admission_index .sec-can .can-list li.list01 .icn-img {
  border-color: #0073d7;
}

#page-admission_index .sec-can .can-list li.list02 {
  border-color: #37a578;
}

#page-admission_index .sec-can .can-list li.list02 .ttl {
  color: #37a578;
}

#page-admission_index .sec-can .can-list li.list02 .list-btn {
  background: #37a578;
}

#page-admission_index .sec-can .can-list li.list02 .icn-img {
  border-color: #37a578;
}

#page-admission_index .sec-can .can-list li.list02 .icn-atm {
  fill: #37a578;
}

#page-admission_index .sec-can .can-list li.list03 {
  border-color: #f58181;
}

#page-admission_index .sec-can .can-list li.list03 .ttl {
  color: #f58181;
}

#page-admission_index .sec-can .can-list li.list03 .list-btn {
  background: #f58181;
}

#page-admission_index .sec-can .can-list li .icn-img {
  border-color: #f58181;
}

#page-admission_index .sec-can .can-list li #icn-prepaid {
  fill: #f58181;
}

#page-admission_index .sec-merit {
  padding: 110px 0 80px;
  background-color: #e1effb;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit {
    padding: 60px 0 30px;
  }
}

#page-admission_index .sec-merit .col2-link {
  display: none;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .col2-link {
    display: block;
    /*  margin-left: 8px;
        margin-right: 8px; */
  }
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .tab-ttl-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#page-admission_index .sec-merit .ttl-merit-box {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .ttl-merit-box {
    margin-bottom: 5.33vw;
  }
}

#page-admission_index .sec-merit .merit-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .merit-ttl {
    font-size: 24px;
    font-size: 6.4vw;
    /* 750 = design width, mobile only */
    line-height: 1.2;
  }
}

#page-admission_index .sec-merit .merit-ttl span {
  font-size: 48px;
  font-size: 4.8rem;
  color: #0073d7;
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px 10px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .merit-ttl span {
    padding: 0 .66vw 1.388vw;
    font-size: 36px;
    font-size: 9.6vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-merit .merit-ttl.merit-2-ttl span {
  color: #4195e1;
}

#page-admission_index .sec-merit .merit-ttl .italic {
  font-style: italic;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .tab-btn-area {
    margin-top: 5.33vw;
  }
}

#page-admission_index .sec-merit .list-slider .slick-list {
  padding: 0 6.66% 0 0;
}

#page-admission_index .sec-merit .list-slider .list-item a {
  outline: none;
}

#page-admission_index .sec-merit .js-tab_content {
  display: none;
}

#page-admission_index .sec-merit .js-tab_content.active {
  display: block;
}

#page-admission_index .sec-merit .merit-list {
  margin: 0 -8px 60px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .merit-list {
    margin: 0 0 8vw 0;
  }
}

@media screen and (min-width: 769px) {
  #page-admission_index .sec-merit .merit-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#page-admission_index .sec-merit .merit-list li {
  margin: 0 8px;
  background: #FFF;
  text-align: center;
  padding: 40px 10px 60px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
}

@media screen and (max-width: 1110px) {
  #page-admission_index .sec-merit .merit-list li .txt br {
    display: none;
  }
}

@media screen and (max-width: 1110px) and (min-width: 769px) {
  #page-admission_index .sec-merit .merit-list li .txt {
    text-align: left;
  }
}

@media screen and (min-width: 769px) {
  #page-admission_index .sec-merit .merit-list li {
    width: 268px;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .merit-list li {
    margin: 0;
    padding: 8vw 2.66vw 16vw;
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
    margin-right: 3.2vw;
  }
}

#page-admission_index .sec-merit .merit-list li:focus {
  outline: none;
}

#page-admission_index .sec-merit .merit-list li .ico-img {
  display: block;
  margin: 0 auto 25px;
  width: 192px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .merit-list li .ico-img {
    margin-bottom: 4vw;
    max-width: 100%;
    width: 59.2vw;
  }
}

#page-admission_index .sec-merit .merit-list li .ttl {
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #0073d7;
  margin-bottom: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .merit-list li .ttl {
    margin-bottom: 1.33vw;
    font-size: 18px;
    font-size: 4.8vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-merit .merit-list li.merit-2 .ttl {
  color: #4195e1;
}

#page-admission_index .sec-merit .merit-list li.merit-2 .note {
  display: block;
  margin-top: 12px;
  color: #8ba5b3;
  font-size: 12px;
  font-size: 1.2rem;
}

#page-admission_index .sec-merit .slick-prev, #page-admission_index .sec-merit .slick-next {
  width: 37px;
  height: 37px;
  z-index: 9;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .slick-prev, #page-admission_index .sec-merit .slick-next {
    width: 9.6vw;
    height: 9.6vw;
  }
}

#page-admission_index .sec-merit .slick-prev:before, #page-admission_index .sec-merit .slick-next:before {
  content: '';
  display: inline-block;
  width: 37px;
  height: 37px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .slick-prev:before, #page-admission_index .sec-merit .slick-next:before {
    width: 9.6vw;
    height: 9.6vw;
  }
}

#page-admission_index .sec-merit .slick-prev:hover, #page-admission_index .sec-merit .slick-next:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .slick-prev.slick-disabled, #page-admission_index .sec-merit .slick-next.slick-disabled {
    display: none !important;
  }
}

#page-admission_index .sec-merit .slick-prev {
  left: -18px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .slick-prev {
    left: 10px;
  }
}

#page-admission_index .sec-merit .slick-prev:before {
  background: url(/common/assets/img/common/icn-arrow-left_bl.png) no-repeat center center;
  background-size: contain;
}

#page-admission_index .sec-merit .slick-next {
  right: -18px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .slick-next {
    right: 10px;
  }
}

#page-admission_index .sec-merit .slick-next:before {
  background: url(/common/assets/img/common/icn-arrow-right_bl.png) no-repeat center center;
  background-size: contain;
}

#page-admission_index .sec-merit .slick-dots {
  margin: 15px 0 0;
}

#page-admission_index .sec-merit .slick-dots li {
  height: inherit !important;
  background: none;
  padding: 0;
  margin: 0 2px;
}

#page-admission_index .sec-merit .slick-dots li.slick-active button::before {
  color: #0073d7;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-merit .orange-btn {
    width: 86.6vw;
  }
}

#page-admission_index .sec-case {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case {
    padding-top: 50px;
    padding-top: 13.33333vw;
    /* 750 = design width, mobile only */
    padding-right: 0px;
    padding-right: 0vw;
    /* 750 = design width, mobile only */
    padding-bottom: 50px;
    padding-bottom: 13.33333vw;
    /* 750 = design width, mobile only */
    padding-left: 0px;
    padding-left: 0vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-case .case-post-wrap {
  margin: 0 -16px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap {
    margin: 0;
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post {
  width: 33.333%;
  float: left;
  padding: 0 16px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap .case-post {
    width: 100%;
    float: none;
    padding: 0;
    margin-top: 0px;
    margin-top: 0vw;
    /* 750 = design width, mobile only */
    margin-right: 0px;
    margin-right: 0vw;
    /* 750 = design width, mobile only */
    margin-bottom: 30px;
    margin-bottom: 8vw;
    /* 750 = design width, mobile only */
    margin-left: 0px;
    margin-left: 0vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post .img {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap .case-post .img {
    margin-bottom: 15px;
    margin-bottom: 4vw;
    /* 750 = design width, mobile only */
  }
  #page-admission_index .sec-case .case-post-wrap .case-post .img img {
    width: 100%;
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post .post-head {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap .case-post .post-head {
    margin-bottom: 7.5px;
    margin-bottom: 2vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post .post-head .category,
#page-admission_index .sec-case .case-post-wrap .case-post .post-head .type {
  float: left;
  font-size: 0;
}

#page-admission_index .sec-case .case-post-wrap .case-post .post-head .category {
  width: 55%;
}

#page-admission_index .sec-case .case-post-wrap .case-post .post-head .category span {
  font-size: 15px;
  font-size: 1.5rem;
  display: inline-block;
  background: #0073d7;
  vertical-align: middle;
  padding: 5px 15px;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap .case-post .post-head .category span {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post .post-head .type {
  text-align: right;
  width: 45%;
}

#page-admission_index .sec-case .case-post-wrap .case-post .post-head .type span {
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
  background: #FFF;
  padding: 3px 5px;
  color: #a9bdcd;
  text-align: center;
  font-weight: bold;
  border: 1px solid #a9bdcd;
  margin-left: 5px;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap .case-post .post-head .type span {
    padding-top: 0px;
    padding-top: 0vw;
    /* 750 = design width, mobile only */
    padding-right: 7.5px;
    padding-right: 2vw;
    /* 750 = design width, mobile only */
    padding-bottom: 0px;
    padding-bottom: 0vw;
    /* 750 = design width, mobile only */
    padding-left: 7.5px;
    padding-left: 2vw;
    /* 750 = design width, mobile only */
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post .ttl {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 5px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap .case-post .ttl {
    margin-bottom: 2.5px;
    margin-bottom: 0.66667vw;
    /* 750 = design width, mobile only */
    font-size: 17px;
    font-size: 4.53333vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post .name {
  color: #8ba5b3;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  #page-admission_index .sec-case .case-post-wrap .case-post .name {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_index .sec-case .case-post-wrap .case-post a:hover .ttl {
  color: #0073d7;
}

/* ====================================================
Admission-join
==================================================== */
#page-admission_join_index .sec-flow .flow-area .col {
  position: relative;
  padding-left: 95px;
  min-height: 156px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col {
    padding-left: 48px;
    padding-left: 12.8vw;
    overflow: hidden;
    margin-bottom: 1.33vw;
    padding-bottom: 4vw;
  }
}

#page-admission_join_index .sec-flow .flow-area .col::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 156px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col::after {
    width: 9.6vw;
    height: 9.6vw;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.26vw;
    height: 100%;
    left: 4.5vw;
    top: 11.86vw;
    background: #abbecb;
  }
}

#page-admission_join_index .sec-flow .flow-area .col .col-inner {
  background: #FFF;
  border: 1px solid #a9bdcd;
  padding: 33px 20px 33px 30px;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col .col-inner {
    padding-top: 17.5px;
    padding-top: 4.66667vw;
    /* 750 = design width, mobile only */
    padding-right: 22.5px;
    padding-right: 6vw;
    /* 750 = design width, mobile only */
    padding-bottom: 20px;
    padding-bottom: 5.33333vw;
    /* 750 = design width, mobile only */
    padding-left: 22.5px;
    padding-left: 6vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_join_index .sec-flow .flow-area .col dl {
  display: table;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col dl {
    display: block;
  }
}

#page-admission_join_index .sec-flow .flow-area .col dl dt, #page-admission_join_index .sec-flow .flow-area .col dl dd {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col dl dt, #page-admission_join_index .sec-flow .flow-area .col dl dd {
    display: block;
    width: 100%;
  }
}

#page-admission_join_index .sec-flow .flow-area .col dl dt {
  position: relative;
  width: 350px;
  color: #0073d7;
  font-weight: bold;
  font-size: 21px;
  font-size: 2.1rem;
}

#page-admission_join_index .sec-flow .flow-area .col dl dt img {
  margin-right: 22px;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col dl dt img {
    margin-right: 4vw;
    width: 18.4vw;
    height: 18.4vw;
  }
}

@media screen and (max-width: 1000px) {
  #page-admission_join_index .sec-flow .flow-area .col dl dt {
    width: 280px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col dl dt {
    width: 100%;
    margin-bottom: 1.6vw;
    font-size: 18px;
    font-size: 4.8vw;
    /* 750 = design width, mobile only */
    line-height: 70px;
  }
}

@media screen and (max-width: 320px) {
  #page-admission_join_index .sec-flow .flow-area .col dl dt {
    font-size: 16px;
    font-size: 4.26667vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_join_index .sec-flow .flow-area .col dl dd {
  border-left: 1px solid #d1d7e1;
  padding: 0px 0 0px 25px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col dl dd {
    border: none;
    border-top: 1px solid #d1d7e1;
    padding: 4vw 0 0;
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_join_index .sec-flow .flow-area .col.flow01::after {
  background-image: url(/common/assets/img/admission/join/flow_num01.png);
}

#page-admission_join_index .sec-flow .flow-area .col.flow02::after {
  background-image: url(/common/assets/img/admission/join/flow_num02.png);
}

#page-admission_join_index .sec-flow .flow-area .col.flow03::after {
  background-image: url(/common/assets/img/admission/join/flow_num03.png);
}

#page-admission_join_index .sec-flow .flow-area .col.flow04::after {
  background-image: url(/common/assets/img/admission/join/flow_num04.png);
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col.flow05 {
    padding-bottom: 0;
    margin-bottom: 8vw;
  }
}

#page-admission_join_index .sec-flow .flow-area .col.flow05::after {
  background-image: url(/common/assets/img/admission/join/flow_num05.png);
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .flow-area .col.flow05::before {
    display: none;
  }
}

#page-admission_join_index .sec-flow .note-box {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-flow .note-box {
    margin-bottom: 10.66vw;
  }
}

#page-admission_join_index .sec-support .support-area {
  overflow: hidden;
  margin-bottom: 60px;
}

@media screen and (min-width: 769px) {
  #page-admission_join_index .sec-support .support-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area {
    margin-bottom: 4vw;
  }
}

#page-admission_join_index .sec-support .support-area.last {
  margin-bottom: 0;
}

#page-admission_join_index .sec-support .support-area .col {
  float: left;
  margin: 0 2.2% 25px 0;
  padding: 33px 30px;
  background: #FFF;
}

@media screen and (min-width: 769px) {
  #page-admission_join_index .sec-support .support-area .col {
    max-width: 48.9%;
    -ms-flex-preferred-size: 48.9%;
        flex-basis: 48.9%;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col {
    width: 100%;
    margin: 0 0 4.8vw;
    padding: 6.4vw;
  }
}

#page-admission_join_index .sec-support .support-area .col:nth-of-type(2n) {
  margin-right: 0;
}

#page-admission_join_index .sec-support .support-area .col .btn-detail {
  position: absolute;
  right: 0;
  top: 2px;
}

@media screen and (max-width: 1000px) {
  #page-admission_join_index .sec-support .support-area .col .btn-detail {
    position: static;
  }
}

@media screen and (max-width: 1024px) {
  #page-admission_join_index .sec-support .support-area .col .btn-detail {
    float: right;
    padding-top: 1.33vw;
  }
}

@media screen and (max-width: 1024px) {
  #page-admission_join_index .sec-support .support-area .col .btn-detail.sp {
    display: block !important;
  }
}

#page-admission_join_index .sec-support .support-area .col .intro-head {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  border-bottom: 1px solid #a9bdcd;
}

@media screen and (min-width: 769px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head {
    margin-bottom: 2.66vw;
    border-bottom: 1px solid #a9bdcd;
    padding-bottom: 1.33vw;
  }
}

#page-admission_join_index .sec-support .support-area .col .intro-head .ttl {
  font-weight: bold;
  font-size: 21px;
  font-size: 2.1rem;
  padding-bottom: 10px;
  color: #0073d7;
  /*&::after{
              @include mq() {
                position: absolute;
                @include v-align
                left: 0;
                width: 16vw;
                height: 16vw;
                content: "";
                display: block;
                position: absolute;
                background-size: 100% auto;
              }
            }*/
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl {
    max-width: 315px;
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    width: 65%;
  }
  .support-area .telNumber h3.ttl {
    width: 100% !important;
  }
}

@media screen and (max-width: 1000px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl {
    margin-bottom: 1.33vw;
  }
}

@media screen and (max-width: 1024px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl {
    padding: 0;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    font-size: 18px;
    font-size: 4.8vw;
    /* 750 = design width, mobile only */
  }
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl span {
    display: block;
    vertical-align: middle;
  }
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl.ttl-2l {
    padding-top: 5px;
    padding-top: 1.33333vw;
    /* 750 = design width, mobile only */
    padding-bottom: 5px;
    padding-bottom: 1.33333vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_join_index .sec-support .support-area .col .intro-head .ttl .icn-img {
  display: none;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl .icn-img {
    display: block;
    margin-right: 3.33vw;
    padding: 3.5vw 0;
    width: 16vw;
    height: 16vw;
    border: 2px solid #d1d7e1;
    border-radius: 50%;
    text-align: center;
  }
  #page-admission_join_index .sec-support .support-area .col .intro-head .ttl .icn-img .icn-svg {
    width: 8vw;
    height: 8vw;
    fill: #0073d7;
  }
}

@media screen and (max-width: 1024px) {
  #page-admission_join_index .sec-support .support-area .col .intro-head .btn-detail {
    display: none;
  }
}

#page-admission_join_index .sec-support .support-area .col dl {
  overflow: hidden;
}

#page-admission_join_index .sec-support .support-area .col dt {
  position: relative;
  float: left;
  width: 80px;
  height: 80px;
  border: 2px solid #d1d7e1;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  padding: 18px 0;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col dt {
    display: none;
  }
}

#page-admission_join_index .sec-support .support-area .col dt .icn-img {
  width: 80px;
  height: 80px;
}

#page-admission_join_index .sec-support .support-area .col dt .icn-svg {
  width: 40px;
  height: 40px;
  fill: #0073d7;
}

#page-admission_join_index .sec-support .support-area .col dd {
  overflow: hidden;
  line-height: 1.7;
  font-size: 15px;
  font-size: 1.5rem;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col dd {
    padding: 0;
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_join_index .sec-support .support-area .col dd a {
  color: #0073d7;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col.support01 .intro-head .ttl::after {
    background-image: url(/common/assets/img/admission/join/support_ico01.png);
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col.support02 .intro-head .ttl::after {
    background-image: url(/common/assets/img/admission/join/support_ico02.png);
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col.support03 .intro-head .ttl::after {
    background-image: url(/common/assets/img/admission/join/support_ico03.png);
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col.support04 .intro-head .ttl::after {
    background-image: url(/common/assets/img/admission/join/support_ico04.png);
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col.support05 .intro-head .ttl::after {
    background-image: url(/common/assets/img/admission/join/support_ico05.png);
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col.support06 .intro-head .ttl::after {
    background-image: url(/common/assets/img/admission/join/support_ico06.png);
  }
}

@media screen and (max-width: 768px) {
  #page-admission_join_index .sec-support .support-area .col.support07 .intro-head .ttl::after {
    background-image: url(/common/assets/img/admission/join/support_ico07.png);
  }
}

/* ====================================================
Admission-campaign
==================================================== */
#page-admission_campaign_index .sec-campaign .section-wrap {
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .section-wrap {
    padding-bottom: 60px;
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area {
  overflow: hidden;
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area {
    margin-bottom: 0;
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area .col {
  width: 47.3%;
  float: left;
  margin: 0 5.4% 25px 0;
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col {
    width: 100%;
    margin: 0 0 5.33vw;
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area .col:nth-of-type(2n) {
  margin-right: 0;
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .intro-box {
  width: calc(100% - 185px);
}

@media screen and (min-width: 769px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .intro-box {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .intro-box {
    width: 100%;
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .img-box {
  width: 140px;
}

@media screen and (min-width: 769px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .img-box {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .img-box {
    width: 100%;
    text-align: center;
    margin-bottom: 5.33vw;
  }
  #page-admission_campaign_index .sec-campaign .campaign-area .col .img-box img {
    width: 53.33vw;
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .page-sub-ttl {
  margin-bottom: 25px;
  padding-bottom: 16px;
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .page-sub-ttl::after {
  width: 180px;
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 27px;
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .txt {
    margin-bottom: 5.33vw;
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .txt a {
  color: #0073d7;
  text-decoration: underline;
  white-space: nowrap;
  font-weight: normal;
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .period {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .period {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .period dt {
  width: 90px;
  padding: 6px 0;
  background: #0073d7;
  color: #FFF;
  text-align: center;
  float: left;
  clear: left;
  margin-bottom: 10px;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .period dt {
    float: none;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .period dt {
    padding: .4vw 2.66vw;
    width: 22.4vw;
  }
}

#page-admission_campaign_index .sec-campaign .campaign-area .col .period dd {
  float: left;
  width: calc(100% - 90px);
  padding-left: 15px;
  padding-top: 6px;
  margin-bottom: 10px;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .period dd {
    float: none;
    width: auto;
    padding-left: 0;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  #page-admission_campaign_index .sec-campaign .campaign-area .col .period dd {
    margin-bottom: 1.33vw;
    padding-top: .66vw;
    padding-left: 2.66vw;
    width: calc(100% - 22.4vw);
  }
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: rgba(0, 115, 215, 0.4);
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 32px;
  overflow: visible;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  background: #000;
  padding: 1px;
}

#cboxLoadingGraphic {
  background: url(/common/assets/img/common/loading.gif) no-repeat center center;
}

#cboxLoadingOverlay {
  background: #000;
}

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000;
}

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
  background: url(/common/assets/img/common/controls.png) no-repeat 0 0;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxPrevious {
  background-position: 0px 0px;
  right: 44px;
}

#cboxPrevious:hover {
  background-position: 0px -25px;
}

#cboxNext {
  background-position: -25px 0px;
  right: 22px;
}

#cboxNext:hover {
  background-position: -25px -25px;
}

#cboxClose {
  background-position: -50px 0px;
  right: 0;
}

#cboxClose:hover {
  background-position: -50px -25px;
}

.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
  right: 66px;
}

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px;
}

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px;
}

/* ====================================================
Header
==================================================== */
#main-header.index-header.wfixed-header {
  min-width: 1320px;
  /*-----when header fixed-----*/
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header {
    height: 146px;
    background: #fff;
    border-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .header-inner {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .function-wrap {
    padding-top: 18px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .function-wrap .function {
    padding: 0 20px 15px 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .function-wrap .function .font-size {
    width: 62px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .function-wrap .function .font-size .btn-size {
    width: 32px;
    line-height: 30px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .function-wrap .function .search-box {
    width: 310px;
    height: 32px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .function-wrap .function .search-box input {
    padding: 7px 10px;
    width: 274px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .function-wrap .function .search-box .btn-submit {
    height: 30px;
  }
}

#main-header.index-header.wfixed-header .logo span {
  display: block;
  color: #039651;
  font-size: 9px;
  line-height: 1;
}

#main-header.index-header.wfixed-header .logo a {
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#main-header.index-header.wfixed-header .logo a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

#main-header.index-header.wfixed-header .logo .txt_cap_sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
  }
  #main-header.index-header.wfixed-header .logo-pc img {
    width: 70px;
    height: auto;
  }
  #main-header.index-header.wfixed-header .logo span {
    display: block;
  }
  #main-header.index-header.wfixed-header .logo .txt_cap_sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .btn-parsonal {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .navGlobal .logo-fixed {
    display: block;
    width: 140px;
  }
  #main-header.index-header.wfixed-header .navGlobal .logo-fixed a {
    display: block;
  }
  #main-header.index-header.wfixed-header .navGlobal .logo-fixed span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item.nav-personal {
    display: block;
  }
}

#main-header.index-header.wfixed-header.is-animation {
  height: 74px;
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header.is-animation .function-wrap {
    padding-top: 0;
  }
}

#main-header.index-header.wfixed-header.is-animation .function-wrap .function {
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d7e1;
  display: none;
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header.is-animation .navGlobal .logo-fixed {
    display: block;
    margin-top: -5px;
  }
}

#main-header.index-header.wfixed-header.is-animation .logo-pc {
  display: block;
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header.is-animation .logo {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.wfixed-header .navToggle {
    display: none;
  }
  #main-header.index-header.wfixed-header #nav-menu {
    display: block;
    position: static;
    height: auto;
    opacity: 1;
  }
  #main-header.index-header.wfixed-header .navGlobal {
    padding: 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: solid 1px #d1d7e1;
    border-bottom: solid 1px #d1d7e1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 16px;
    padding-top: 16px;
    margin: 0;
    width: calc(100% - 140px);
    border-top: 0;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item {
    margin-left: 32px;
    border: 0;
    width: auto;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item:first-child {
    margin-left: 0;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item > span {
    display: inline;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item a {
    display: inline-block;
    padding: 0 0 0 20px;
    width: auto;
    color: #0073d7;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.4;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item a:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #0073d7;
    -webkit-mask-image: url("/common/assets/img/common/icon_internal-link-B.svg");
    mask-image: url("/common/assets/img/common/icon_internal-link-B.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item.nav-personal a {
    padding-left: 0;
    padding-right: 20px;
    width: 167px;
    color: #0073d7;
    line-height: 45px;
    text-align: center;
    border: 1px solid #0073d7;
    border-radius: 30px;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item.nav-personal a:before {
    display: none;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item.nav-personal a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    width: 14px;
    height: 14px;
    background-color: #0073d7;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item.nav-personal a:hover {
    opacity: 1;
    color: #fff;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .nav-item.nav-personal a:hover:after {
    background-color: #fff;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .open-subNav {
    display: none;
  }
  #main-header.index-header.wfixed-header .navGlobal .navGlobalIn .sub-nav {
    display: none;
  }
  #main-header.index-header.wfixed-header .navGlobal .btn-contact {
    display: none;
  }
}

@media screen and (max-width: 1260px) {
  #main-header.index-header.wfixed-header navGlobal .navGlobalIn .nav-item a {
    font-size: 13px;
  }
}

#main-header.index-header.blue.wfixed-header {
  background: #fff;
}

@media screen and (min-width: 1025px) {
  #main-header.index-header.blue.wfixed-header .function-wrap {
    width: 100%;
  }
  #main-header.index-header.blue.wfixed-header .logo {
    display: none;
  }
  #main-header.index-header.blue.wfixed-header .header-inner {
    position: relative;
  }
  #main-header.index-header.blue.wfixed-header .function-wrap .function .font-size .btn-size {
    color: #0073d7;
    border: 1px solid #0073d7;
    background: none;
  }
  #main-header.index-header.blue.wfixed-header .function-wrap .function .font-size .btn-size.active {
    color: #fff;
    background: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header .function-wrap .function .search-box {
    border: 1px solid #0073d7;
  }
  #main-header.index-header.blue.wfixed-header .function-wrap .function .search-box .btn-submit #icn-submit {
    fill: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header .navGlobal {
    padding: 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: solid 1px #d1d7e1;
    border-bottom: solid 1px #d1d7e1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ffffff;
  }
  #main-header.index-header.blue.wfixed-header .navGlobal .logo-fixed {
    display: block;
    width: 140px;
  }
  #main-header.index-header.blue.wfixed-header .navGlobalIn {
    padding-bottom: 16px;
    padding-top: 16px;
    width: calc(100% - 140px);
  }
  #main-header.index-header.blue.wfixed-header .navGlobalIn .nav-item a:not(.sub-nav-item__child) {
    color: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header .navGlobalIn .nav-item a:before {
    background-color: #0073d7;
    -webkit-mask-image: url("/common/assets/img/common/icon_internal-link-B.svg");
    mask-image: url("/common/assets/img/common/icon_internal-link-B.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-header.index-header.blue.wfixed-header .navGlobalIn .nav-item.nav-personal a {
    color: #fff !important;
    border: 1px solid #0073d7;
    background: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header .navGlobalIn .nav-item.nav-personal a:after {
    background-color: #fff !important;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-header.index-header.blue.wfixed-header .navGlobalIn .nav-item.nav-personal a:hover {
    color: #989995 !important;
    background: #fff !important;
    border-color: #989995 !important;
  }
  #main-header.index-header.blue.wfixed-header .navGlobalIn .nav-item.nav-personal a:hover:after {
    background-color: #989995 !important;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .function-wrap .function .font-size .btn-size {
    color: #0073d7;
    border: 1px solid #0073d7;
    background: none;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .function-wrap .function .font-size .btn-size.active {
    color: #fff;
    background: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .function-wrap .function .search-box {
    border: 1px solid #0073d7;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .function-wrap .function .search-box .btn-submit #icn-submit {
    fill: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .navGlobalIn .nav-item a {
    color: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .navGlobalIn .nav-item a:before {
    background-color: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .navGlobalIn .nav-item.nav-personal a {
    border: 1px solid #0073d7;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .navGlobalIn .nav-item.nav-personal a:after {
    background-color: #0073d7;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .navGlobalIn .nav-item.nav-personal a:hover {
    color: #fff;
    background: #0073d7;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .navGlobalIn .nav-item.nav-personal a:hover:after {
    background-color: #fff;
  }
}

#main-header.index-header.blue.wfixed-header.is-animation {
  background: #fff;
}

@media screen and (max-width: 1024px) {
  #main-header.index-header.blue.wfixed-header {
    border-bottom: 1px solid #d1d7e1;
    background: #ffffff;
  }
  #main-header.index-header.blue.wfixed-header .header-inner {
    padding: 0;
  }
  #main-header.index-header.blue.wfixed-header .logo {
    display: none;
  }
  #main-header.index-header.blue.wfixed-header .logo-sp {
    display: none;
  }
  #main-header.index-header.blue.wfixed-header .logo-sp span {
    display: block;
    color: #333;
    text-align: left;
  }
  #main-header.index-header.blue.wfixed-header .btn-parsonal {
    border: 1px solid #0073d7;
    background: #0073d7;
    border-radius: 30px;
  }
  #main-header.index-header.blue.wfixed-header .btn-parsonal:before {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: #fff;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 12px;
    background-position: right 10px center;
    background-repeat: no-repeat;
  }
  #main-header.index-header.blue.wfixed-header.is-animation {
    background: #fff;
    border-bottom: 1px solid #d1d7e1;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .btn-parsonal {
    background: #0073d7;
    border: 0;
  }
  #main-header.index-header.blue.wfixed-header.is-animation .btn-parsonal:before {
    background-color: #fff;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

/* ====================================================
Footer
==================================================== */
.ft-contact-area.wfixed-contact-area .inner {
  width: 100%;
  max-width: 1320px;
  min-width: 1150px;
}
.suppl {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .suppl {
    font-size: 14px;
    font-size: 3.733336vw;
  }
}

@media screen and (max-width: 768px) {
  .ft-contact-area.wfixed-contact-area {
    padding: 80px 0 90px;
  }
  .ft-contact-area.wfixed-contact-area .txtBasic {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 768px) {
  .ft-contact-area.wfixed-contact-area .lead {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.ft-contact-area.wfixed-contact-area .box {
  padding: 0 5.4%;
}

@media screen and (max-width: 960px) {
  .ft-contact-area.wfixed-contact-area .box {
    width: 50%;
    min-width: 1px;
  }
}

@media screen and (max-width: 800px) {
  .ft-contact-area.wfixed-contact-area .box {
    width: 50%;
    min-width: 1px;
  }
}

@media screen and (max-width: 768px) {
  .ft-contact-area.wfixed-contact-area .box {
    width: 50%;
    min-width: 1px;
  }
}

@media screen and (max-width: 768px) {
  .ft-contact-area.wfixed-contact-area .box .ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.ft-contact-area.wfixed-contact-area .boxR {
  border-left: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .ft-contact-area.wfixed-contact-area .boxR {
    margin-top: 0;
    padding: 0;
    border-left: 1px solid #fff;
    border-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .ft-contact-area.wfixed-contact-area .boxR .tel .telno {
    padding-left: 40px;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .ft-contact-area.wfixed-contact-area + .page-top.sp {
    display: none !important;
  }
}

.ft-contact-area.wfixed-contact-area + .page-top.pc {
  display: block;
  position: absolute;
  top: 60px;
  right: 10px;
  width: 56px;
  text-align: center;
}

#main-footer.wfixed-footer .ft-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 70px 20px 100px;
  width: 1140px;
  max-width: 100000px;
  min-width: 1140px;
}

@media screen and (max-width: 768px) {
  #main-footer.wfixed-footer .navGlobalIn .nav-item {
    line-height: 2.4;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item a {
    position: relative;
    display: inline-block;
    color: #8ba5b3;
    font-size: 13px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item a.icn-link-after {
    padding-right: 20px;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item a.icn-link-after:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #8ea4b2;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-footer.wfixed-footer .navGlobalIn.navGroup03 .nav-item:first-child {
    margin-bottom: 103px;
  }
  #main-footer.wfixed-footer .navGlobalIn.navGroup04 .nav-item:first-child {
    margin-bottom: 32px;
  }
  #main-footer.wfixed-footer .navGlobalIn.navGroup05 .sub-nav:first-of-type {
    margin-bottom: 32px;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item {
    width: auto;
    border-bottom: 0;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item a {
    line-height: 2.4;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item > span {
    display: inline;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item .open-subNav {
    display: none;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item .sub-nav {
    display: block;
    padding: 0;
    border-top: 0;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item {
    line-height: 2.4;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item:last-child {
    border-bottom: 0;
  }
  #main-footer.wfixed-footer .navGlobalIn .nav-item .sub-nav .sub-nav-item a {
    line-height: 2.4;
    color: #8ba5b3;
    font-size: 13px;
    font-weight: 400;
  }
}

#main-footer.wfixed-footer .copy-wrap {
  padding: 5px 0;
  border-top: 1px solid #d1d7e1;
}

#main-footer.wfixed-footer .copy-wrap .inner {
  max-width: initial;
  width: 1160px;
}

#main-footer.wfixed-footer .copy-wrap .copyright {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  #main-footer.wfixed-footer .copy-wrap .copyright {
    width: auto;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #main-footer.wfixed-footer .copy-wrap .logo {
    width: auto;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #main-footer.wfixed-footer .copy-wrap .logo span {
    display: inline-block;
    margin-left: 10px;
  }
}

.ft-banner.wfixed-ft-banner {
  display: none !important;
}

#page-member_logo_index .page-head {
  background-image: url("/common/assets/img/member/mv-pc_me.png");
}

@media screen and (max-width: 768px) {
  #page-member_logo_index .page-head {
    background-image: url("/common/assets/img/member/mv-sp_me.png");
  }
}

@media screen and (max-width: 1000px) {
  #page-member_logo_index .page-wrap {
    padding-top: 136px;
  }
}

#page-member_logo_index .inner {
  width: 1160px;
}

@media screen and (max-width: 768px) {
  #page-member_logo_index .page-head.dark {
    border-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #page-member_logo_index .page-head {
    height: 245px;
    border-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #page-member_logo_index .page-head .page-main-ttl {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  #page-member_logo_index .page-head .page-main-ttl .en {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

#page-member_logo_index .container {
  width: 1150px;
}

@media screen and (max-width: 768px) {
  #page-member_logo_index .txtBasic {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #page-member_logo_index .page-ttl {
    font-size: 36px;
    font-size: 3.6rem;
  }
  #page-member_logo_index .page-sub-ttl {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}

.logo-intro {
  margin-bottom: 60px;
}

.logo-intro .fs15 {
  margin-bottom: 40px;
}

.logo-document .file {
  margin-bottom: 42px;
}

.logo-document .list-debit {
  margin-bottom: 15px;
}

.logo-document .list-images {
  margin-bottom: 60px;
}

.logo-document .wrap-list-image {
  padding: 0 35px;
}

.file a {
  color: #0073d7;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: underline;
  display: inline-block\9;
}

@media screen and (min-width: 1025px) {
  .file a:hover {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -ms-filter: "alpha(opacity=60)";
    filter: alpha(opacity=60);
    opacity: 0.6;
  }
}

.file a img {
  width: 13px;
  position: relative;
  top: 7px;
}

.list-debit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -40px;
}

.list-debit.video {
  margin-bottom: 0;
}

.list-debit.video .item {
  margin-bottom: 0;
  width: 25%;
}

.list-debit.video .item .img-debit:before {
  padding-bottom: 0;
}

.list-debit.video .item .img-debit img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
  width: 100%;
}

.list-debit.video .item .img-debit i {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #eb0000;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 50%;
  z-index: 3;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  font-size: 15px;
}

.list-debit.video .item .img-debit .imgCrop {
  height: auto;
  position: relative;
}

.list-debit.video .item .img-debit .imgCrop:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}

.list-debit .item {
  padding: 0 20px;
  width: 25%;
  margin-bottom: 40px;
}

.list-debit .item .img-debit {
  margin-bottom: 10px;
}

.list-debit .item .fs15 {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.7;
}

.list-debit .item .fs15 span {
  display: inline-block;
  text-align: center;
}

.movie_list_wrap {
  width: 50vw;
  height: auto;
  display: block;
}

.movie_list_wrap video {
  width: 100%;
  height: 100%;
}

.list-txt-logo li {
  padding-left: 10px;
  position: relative;
}

.list-txt-logo li:before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #1e5f95;
  position: absolute;
  left: 0;
  top: 11px;
}

.img-debit {
  border: 1px solid #a9bdcd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.img-debit:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.img-debit .imgCrop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1;
}

.img-debit .imgCrop img {
  -o-object-fit: contain;
     object-fit: contain;
}

.list-images {
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
}

.list-images.four {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  padding: 15px 10px 15px 10px;
}

.list-images .item-image {
  padding: 0;
}

.list-images .item-image + .item-image {
  margin-left: 35px;
}

.x-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 10px 24px 10px !important;
}

.item-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-image .item-type {
  width: 40px;
}
.item-image-ml{
  margin-left: 30px;
}
.item-image .item-name {
  /* padding-left: 12px;
  padding-top: 6px;
  margin-right: 30px; */
  padding-left: 12px;
  padding-top: 6px;
  margin-right: 0px;
}

.item-image .item-name a {
  display: block;
  color: #0073d7;
  text-decoration: underline;
  margin-bottom: 5px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.item-image .item-name a:hover {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0.6;
}

.item-image .item-name span {
  display: inline-block;
  text-align: center;
  color: #8ba5b3;
  font-size: 12px;
  font-size: 1.2rem;
}

.item-image .item-name .icons-wrap {
  position: relative;
  display: inline;
  width: auto;
  text-align: center;
}

body {
  background: #f7f9fb;
}

.pb0 {
  padding-bottom: 0 !important;
}

.border-t-b {
  position: relative;
  border-bottom: 0;
}

.border-t-b:before {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 400%;
  border-top: solid 1px #d1d7e1;
}

.border-t-b:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -200%;
  width: 400%;
  border-top: solid 1px #d1d7e1;
}

.section-video {
  margin-top: 65px;
}

.content-member .logo-intro {
  margin-bottom: 0;
}

.pt110 {
  padding-top: 110px;
}

.desc-size {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #333333;
  font-size: 14px;
  font-size: 1.4rem;
}

.list-img-module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list-img-module li {
  margin-right: 20px;
  margin-bottom: 40px;
}

.list-img-module li .item-img {
  padding: 0 10px;
  background: #fff;
  border: 1px solid #a9bdcd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 152px;
}

/*.list-img-module.list-box05 li {
  width: calc(100% / 6 - 33.333px);
}
*/
/*.list-img-module.list-box05 li:nth-child(6n) {
  margin-right: 0;
}
*/
.list-img-module.list-box05 li .item-img {
  padding: 15px 30px;
}

.list-img-module.list-box04 li .item-img {
  padding: 0px 23px;
}

/*.list-img-module.list-box02 li {
  width: calc(100% / 2 - 20px);
}
*/
.list-img-module.list-box02 li:nth-child(3n) {
  margin-right: 0;
}


.list-img-module.list-box02 li .item-img {
  padding: 25px 30px;
}
.list-img-module.list-box01 .item-img {
    padding: 40px 40px;
}

/*.list-img-module.list-box01 li {
  width: 830px;
}*/

.box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.box-flex ul:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.box-flex ul:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.box-flex ul:nth-child(2) li:last-child {
  margin-right: 0;
}

.section-img .item-image {
  margin-top: 40px;
}

.section-img .item-image.item-bg-white {
  margin: 20px auto 0;
  /* width: 380px; */
  width: 760px;
  background: #fff;
  padding: 24px 10px 24px 36px;
}

#page-member_logo_index .note-form {
  color: #1e5f95;
  line-height: 1.6;
  margin-bottom: 80px;
}

#page-member_logo_index .note-form a {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#page-member_logo_index .note-form a:hover {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0.6;
}

#page-member_logo_index .note-form a.no_udr {
  text-decoration: none;
  color: inherit;
}

#page-member_logo_index .note-form-device {
  padding-left: 10px;
}

/* ====================================================
FAQ
==================================================== */
#page-faq1_index,
#page-faq2_index {
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #page-faq1_index,
  #page-faq2_index {
    padding-bottom: 25px;
  }
}

#page-faq1_index .breadcrumb,
#page-faq2_index .breadcrumb {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .col2-link,
  #page-faq2_index .col2-link {
    margin-top: 60px;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
  #page-faq1_index .col2-link li,
  #page-faq2_index .col2-link li {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 320px) {
  #page-faq1_index .col2-link li,
  #page-faq2_index .col2-link li {
    font-size: 10px;
    font-size: 1rem;
  }
}

#page-faq1_index .page-sub-ttl,
#page-faq2_index .page-sub-ttl {
  margin-bottom: 41px;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .page-sub-ttl,
  #page-faq2_index .page-sub-ttl {
    margin-bottom: 6.66vw;
  }
}

#page-faq1_index .inner,
#page-faq2_index .inner {
  max-width: 1160px;
}

#page-faq1_index .page-head,
#page-faq2_index .page-head {
  background-image: url("/common/assets/img/faq/mv-pc_qu.png");
}

@media screen and (max-width: 768px) {
  #page-faq1_index .page-head,
  #page-faq2_index .page-head {
    background-image: url("/common/assets/img/faq/mv-sp_qu.png");
  }
}

#page-faq1_index .anchor-link,
#page-faq2_index .anchor-link {
  font-size: 0;
  margin-bottom: 76px;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .anchor-link,
  #page-faq2_index .anchor-link {
    margin-bottom: 55px;
  }
}

#page-faq1_index .anchor-link li,
#page-faq2_index .anchor-link li {
  margin-right: 40px;
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .anchor-link li,
  #page-faq2_index .anchor-link li {
    margin-right: 30px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

#page-faq1_index .anchor-link li a,
#page-faq2_index .anchor-link li a {
  color: #1e5f95;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#page-faq1_index .anchor-link li a::before,
#page-faq2_index .anchor-link li a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  background-image: url(/common/assets/img/common/icon_internal-link-A_b.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 3px;
  margin-right: 5px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#page-faq1_index .anchor-link li a:hover,
#page-faq2_index .anchor-link li a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

#page-faq1_index .faq-content,
#page-faq2_index .faq-content {
  margin-bottom: 85px;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .faq-content,
  #page-faq2_index .faq-content {
    margin-bottom: 55px;
  }
}

#page-faq1_index .faq-intro,
#page-faq2_index .faq-intro {
  border-bottom: 1px solid #a9bdcd;
  font-size: 15px;
  font-size: 1.5rem;
}

#page-faq1_index .faq-intro dt, #page-faq1_index .faq-intro dd,
#page-faq2_index .faq-intro dt,
#page-faq2_index .faq-intro dd {
  position: relative;
  padding-left: 88px;
  padding-right: 95px;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .faq-intro dt, #page-faq1_index .faq-intro dd,
  #page-faq2_index .faq-intro dt,
  #page-faq2_index .faq-intro dd {
    padding-left: 50px;
    padding-right: 40px;
  }
}

#page-faq1_index .faq-intro dt::before, #page-faq1_index .faq-intro dd::before,
#page-faq2_index .faq-intro dt::before,
#page-faq2_index .faq-intro dd::before {
  content: "";
  position: absolute;
  left: 25px;
  width: 40px;
  height: 40px;
  top: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .faq-intro dt::before, #page-faq1_index .faq-intro dd::before,
  #page-faq2_index .faq-intro dt::before,
  #page-faq2_index .faq-intro dd::before {
    left: 0;
  }
}

#page-faq1_index .faq-intro dt,
#page-faq2_index .faq-intro dt {
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: bold;
  border-top: 1px solid #a9bdcd;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .faq-intro dt,
  #page-faq2_index .faq-intro dt {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

#page-faq1_index .faq-intro dt::before,
#page-faq2_index .faq-intro dt::before {
  background-image: url(/common/assets/img/faq/q.png);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

#page-faq1_index .faq-intro dt::after,
#page-faq2_index .faq-intro dt::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 25px;
  width: 24px;
  height: 24px;
  background-image: url(/common/assets/img/svg/icon_plus_g.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .faq-intro dt::after,
  #page-faq2_index .faq-intro dt::after {
    right: 0;
  }
}

#page-faq1_index .faq-intro dt.active::after,
#page-faq2_index .faq-intro dt.active::after {
  background-image: url(/common/assets/img/svg/icon_minus_g.svg);
}

#page-faq1_index .faq-intro dd,
#page-faq2_index .faq-intro dd {
  display: none;
  padding-bottom: 50px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #page-faq1_index .faq-intro dd,
  #page-faq2_index .faq-intro dd {
    padding-bottom: 35px;
    margin-top: 0;
  }
}

#page-faq1_index .faq-intro dd::before,
#page-faq2_index .faq-intro dd::before {
  background-image: url(/common/assets/img/faq/a.png);
}

#page-faq1_index .faq-intro dd a,
#page-faq2_index .faq-intro dd a {
  color: #0073d7;
  text-decoration: underline;
}

.faq-list {
  border-top: 1px solid #a9bdcd;
  font-size: 1.5rem;
}

@media screen and (max-width: 640px) {
  .faq-list {
    font-size: 15px;
    font-size: 4vw;
    /* 750 = design width, mobile only */
  }
}

.faq-list__item {
  border-bottom: 1px solid #a9bdcd;
}

.faq-list__box {
  padding: 27px 105px 27px 90px;
  background-repeat: no-repeat;
  background-size: 40px;
}

@media screen and (max-width: 640px) {
  .faq-list__box {
    padding-top: 24px;
    padding-top: 6.4vw;
    /* 750 = design width, mobile only */
    padding-right: 50px;
    padding-right: 13.33333vw;
    /* 750 = design width, mobile only */
    padding-bottom: 24px;
    padding-bottom: 6.4vw;
    /* 750 = design width, mobile only */
    padding-left: 52px;
    padding-left: 13.86667vw;
    /* 750 = design width, mobile only */
    background-size: 10.66vw;
  }
}

.faq-list__q {
  position: relative;
  background-position: 24px 20px;
  background-image: url(/common/assets/img/faq/q.png);
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .faq-list__q {
    background-position: 0 center;
  }
}

.faq-list__q:after {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  background-image: url(/common/assets/img/svg/icon_plus_g.svg);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
}

@media screen and (max-width: 640px) {
  .faq-list__q:after {
    right: 0;
    width: 6.4vw;
    height: 6.4vw;
    background-size: cover;
  }
}

.faq-list__q.is-open:after {
  background-image: url(/common/assets/img/svg/icon_minus_g.svg);
}

.faq-list__a {
  display: none;
  padding-top: 0;
  background-position: 24px top;
  background-image: url(/common/assets/img/faq/a.png);
}

@media screen and (max-width: 640px) {
  .faq-list__a {
    padding-right: 0;
    background-position: 0 top;
  }
}

.faq-list__inner {
  padding-top: 6px;
}

@media screen and (max-width: 640px) {
  .faq-list__inner {
    padding-top: 1.86vw;
  }
}

.faq-list__inner a {
  color: #0073d7;
  text-decoration: underline;
}

.subtitle {
  line-height: 1.8;
}

#page-about_index .page-head {
  background-image: url("/common/assets/img/about/mv-pc_ab.png");
}

@media screen and (max-width: 768px) {
  #page-about_index .page-head {
    background-image: url("/common/assets/img/about/mv-sp_ab.png");
  }
}

#page-about_index .inner {
  max-width: 1160px;
}

#page-about_index .about-detail {
  margin-bottom: 0;
}

#page-about_index .sec-about {
  padding: 100px 0 120px;
}

@media screen and (max-width: 768px) {
  #page-about_index .sec-about {
    padding: 60px 0 60px;
  }
}

#page-about_index .subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  #page-about_index .subtitle {
    margin-bottom: 45px;
  }
}

.about-detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #A9BDCD;
}

@media screen and (max-width: 768px) {
  .about-detail dl {
    border: 0;
    display: block;
  }
}

.about-detail dl dt, .about-detail dl dd {
  border-top: 1px solid #A9BDCD;
  padding: 31px 25px;
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
}

.about-detail dl dt img, .about-detail dl dd img {
  height: 20px;
  min-width: 14px;
}

.about-detail dl dt li, .about-detail dl dd li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-detail dl dt li span, .about-detail dl dd li span {
  width: 17px;
}

.about-detail dl dt li span:last-child, .about-detail dl dd li span:last-child {
  width: calc(100% - 17px);
}

.about-detail dl dt {
  background-color: #EBEFF5;
  font-weight: bold;
  width: 25%;
}

@media screen and (min-width: 769px) {
  .about-detail dl dt {
    border-left: 1px solid #A9BDCD;
    border-right: 1px solid #A9BDCD;
  }
}

@media screen and (max-width: 768px) {
  .about-detail dl dt {
    background-color: transparent;
    padding: 24px 0 0;
    margin-bottom: 15px;
    width: 100%;
  }
}

.about-detail dl dd {
  width: calc(100% - 25%);
}

@media screen and (min-width: 769px) {
  .about-detail dl dd {
    border-right: 1px solid #A9BDCD;
  }
}

@media screen and (max-width: 768px) {
  .about-detail dl dd {
    border-top: 0;
    padding: 0 0 23px;
    width: 100%;
  }
}

.about-detail.txt-blue {
  margin-bottom: 40px;
}

.about-detail.txt-blue dl dd {
  color: #0073D7;
}

.about-detail.txt-blue dl dd p {
  text-decoration: underline;
}

.about-detail.txt-blue dl dd p.decoration-none {
  text-decoration: none;
}

.about-detail.txt-blue dl dd img {
  margin-right: 5px;
}

.about-detail.txt-blue dl dd img.ico-share {
  margin: 0 0 0 5px;
}

.about-detail.txt-blue dl dd span {
  color: #333333;
}

.about-detail.bg-blue {
  margin-bottom: 40px;
}

.about-detail.bg-blue dl {
  border-bottom: 0;
}

.about-detail.bg-blue dl dt, .about-detail.bg-blue dl dd {
  border: 1px solid #F7F9FB;
}

.about-detail.bg-blue dl dt {
  color: #FFFFFF;
  background-color: #91B3D1;
  padding: 19px 25px;
}

.about-detail.bg-blue dl dd {
  background-color: #EBEFF5;
}

@media screen and (max-width: 768px) {
  .about-detail.bg-blue {
    margin-bottom: 30px;
  }
  .about-detail.bg-blue dl dt {
    padding: 14px 25px;
    margin-bottom: 0;
  }
  .about-detail.bg-blue dl dd {
    padding: 14px 25px;
  }
}

.about-detail__note {
  margin-top: 5px;
  font-size: 1.3rem;
}

#page-member_howto_index .page-head {
  background-image: url("/common/assets/img/member/mv-pc_me.png");
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .page-head {
    background-image: url("/common/assets/img/member/mv-sp_me.png");
  }
}

#page-member_howto_index .inner {
  max-width: 1160px;
}

#page-member_howto_index .note-form {
  line-height: 1.8;
}

#page-member_howto_index .note-form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page-member_howto_index .note-form p span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page-member_howto_index .txt-member {
  font-size: 15px;
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 25px;
}

#page-member_howto_index .sec01 {
  padding-top: 100px;
}

#page-member_howto_index .sec01 .mb55 {
  margin-bottom: 55px;
}

#page-member_howto_index .sec01,
#page-member_howto_index .sec03,
#page-member_howto_index .sec04 {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .sec01,
  #page-member_howto_index .sec03,
  #page-member_howto_index .sec04 {
    padding-top: 45px;
  }
}

#page-member_howto_index .sec01 .about-detail dd,
#page-member_howto_index .sec03 .about-detail dd,
#page-member_howto_index .sec04 .about-detail dd {
  padding: 15px 25px;
}

#page-member_howto_index .sec01 .about-detail dd a,
#page-member_howto_index .sec03 .about-detail dd a,
#page-member_howto_index .sec04 .about-detail dd a {
  color: #0073d7;
  text-decoration: underline;
  text-underline-position: under;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 1025px) {
  #page-member_howto_index .sec01 .about-detail dd a:hover,
  #page-member_howto_index .sec03 .about-detail dd a:hover,
  #page-member_howto_index .sec04 .about-detail dd a:hover {
    opacity: 0.6;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
}

#page-member_howto_index .sec01 .about-detail dd a.link-share,
#page-member_howto_index .sec03 .about-detail dd a.link-share,
#page-member_howto_index .sec04 .about-detail dd a.link-share {
  text-decoration: none;
}

#page-member_howto_index .sec01 .about-detail dd p,
#page-member_howto_index .sec03 .about-detail dd p,
#page-member_howto_index .sec04 .about-detail dd p {
  text-decoration: none;
}

#page-member_howto_index .sec01 .about-detail dt,
#page-member_howto_index .sec03 .about-detail dt,
#page-member_howto_index .sec04 .about-detail dt {
  padding: 14px 25px;
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .sec01 .about-detail.table-sec dd,
  #page-member_howto_index .sec03 .about-detail.table-sec dd,
  #page-member_howto_index .sec04 .about-detail.table-sec dd {
    padding: 0px 0px 20px;
  }
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .sec01 .about-detail.table-sec dd:last-child,
  #page-member_howto_index .sec03 .about-detail.table-sec dd:last-child,
  #page-member_howto_index .sec04 .about-detail.table-sec dd:last-child {
    border-bottom: 1px solid #a9bdcd;
  }
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .sec01 .about-detail.table-sec dt,
  #page-member_howto_index .sec03 .about-detail.table-sec dt,
  #page-member_howto_index .sec04 .about-detail.table-sec dt {
    padding: 24px 0 0;
  }
}

#page-member_howto_index .sec03 .about-detail.txt-blue {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .sec03 .about-detail.txt-blue {
    margin-bottom: 10px;
  }
}

#page-member_howto_index .sec03 .note-form {
  margin-bottom: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page-member_howto_index .sec03 .note-form span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .sec03 .note-form {
    margin-bottom: 45px;
  }
}

#page-member_howto_index .sec04 {
  border-top: 1px solid #d1d7e1;
  padding-bottom: 105px;
}

@media screen and (max-width: 768px) {
  #page-member_howto_index .sec04 {
    padding-bottom: 80px;
  }
}

#page-member_howto_index .boxListMember {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 23px 0;
  border-top: 1px solid #a9bdcd;
}

#page-member_howto_index .boxListMember .name {
  font-weight: bold;
  margin-bottom: 15px;
}

#page-member_howto_index .border-bottom {
  border-bottom: 1px solid #a9bdcd;
}

.table-member01 {
  margin-bottom: 40px;
}

.table-member01 table {
  width: 100%;
}

.table-member01 table tr th {
  color: #fff;
  background-color: #91b3d1;
  padding: 10px 0;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  border-left: 1px solid #91b3d1;
  border-right: 1px solid #fff;
  line-height: 1.4;
}

.table-member01 table tr th:nth-child(1) {
  width: 26%;
}

.table-member01 table tr th:nth-child(2), .table-member01 table tr th:nth-child(3), .table-member01 table tr th:nth-child(4), .table-member01 table tr th:nth-child(5) {
  width: 14%;
}

.table-member01 table tr th:nth-child(6) {
  width: 18%;
  border-right: 0;
}

.table-member01 table tr td {
  font-size: 15px;
  font-size: 1.5rem;
  color: #333333;
  padding: 10px 15px;
  border: 1px solid #a9bdcd;
  text-align: center;
}

.table-member01 table tr td.col01 {
  color: #5183af;
  background-color: #ebeff5;
  padding: 15px 15px;
  width: 4%;
}

.table-member01 table tr td.col02 {
  background-color: #ebeff5;
  text-align: left;
  font-weight: bold;
  width: 22%;
}

.table-member02 {
  margin-bottom: 35px;
}

.table-member02 table {
  width: 100%;
}

.table-member02 table tr th,
.table-member02 table tr td {
  padding: 10px 24px;
  font-size: 15px;
  font-size: 1.5rem;
}

.table-member02 table tr th:nth-child(1),
.table-member02 table tr td:nth-child(1) {
  width: 25%;
}

.table-member02 table tr th:nth-child(2), .table-member02 table tr th:nth-child(3), .table-member02 table tr th:nth-child(4), .table-member02 table tr th:nth-child(5),
.table-member02 table tr td:nth-child(2),
.table-member02 table tr td:nth-child(3),
.table-member02 table tr td:nth-child(4),
.table-member02 table tr td:nth-child(5) {
  width: calc(75% / 4);
  text-align: center;
}

.table-member02 table tr th {
  color: #fff;
  background-color: #91b3d1;
  text-align: center;
  border-right: 1px solid #fff;
  font-weight: bold;
}

.table-member02 table tr td {
  color: #333333;
  border: 1px solid #a9bdcd;
}

.table-member02 table tr td:first-child {
  font-weight: bold;
  background-color: #ebeff5;
}

.box-detail {
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.box-detail .label {
  color: #fff;
  background-color: #0073d7;
  display: inline-block;
  padding: 7px 12px;
  margin-bottom: 17px;
  font-weight: bold;
}

.box-detail p {
  color: #333333;
  line-height: 1.8;
}

.box-detail p span {
  color: #0073d7;
}

.box-download a {
  border: 2px solid #a9bdcd;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 20px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #1e5f95;
}

@media screen and (max-width: 1024px) {
  .box-download a {
    padding: 18px 2px;
    display: block;
    text-align: center;
  }
  .box-download a .image {
    margin-bottom: 10px;
  }
}

.box-download a .image {
  width: 52px;
  display: inline-block;
}

.box-download a .name {
  font-size: 15px;
  font-size: 1.5rem;
  margin-left: 10px;
  width: calc(100% - 62px);
}

@media screen and (max-width: 1024px) {
  .box-download a .name {
    margin-left: 0;
    width: 100%;
  }
}

.box-download a:hover {
  border-color: #1e5f95;
}

.box-download a:hover .icon .icon01 {
  display: block;
}

.box-download a:hover .icon .icon02 {
  display: none;
}

#page-information_index .inner {
  max-width: 1160px;
}

#page-information_index .page-head {
  background-image: url("/common/assets/img/information/mv-pc_ne.png");
}

@media screen and (max-width: 768px) {
  #page-information_index .page-head {
    background-image: url("/common/assets/img/information/mv-sp_ne.png");
  }
}

.content-info {
  padding: 100px 0 120px;
}

@media screen and (max-width: 768px) {
  .content-info {
    padding: 60px 0 80px;
  }
}

.content-info .tabWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .content-info .tabWrap {
    display: block;
    margin-bottom: 40px;
  }
}

.content-info .tabWrap .tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content-info .tabWrap .tab-menu li {
  color: #8ba5b3;
  cursor: pointer;
  padding: 3px 45px;
  border-right: 1px solid #a9bdcd;
  border-left: 1px solid #a9bdcd;
  margin-right: -1px;
  font-size: 15px;
  font-size: 1.5rem;
}

.content-info .tabWrap .tab-menu li.current {
  font-weight: bold;
  color: #0073d7;
}

@media screen and (max-width: 1024px) {
  .content-info .tabWrap .tab-menu li {
    padding: 3px 23px;
  }
}

@media screen and (max-width: 768px) {
  .content-info .tabWrap .tab-menu li {
    margin-bottom: 18px;
    padding: 3px 23px;
  }
}

@media only screen and (max-width: 375px) and (min-width: 360px) {
  .content-info .tabWrap .tab-menu li {
    padding: 3px 26.5px;
  }
}

.content-info .tabWrap #select-date {
  background: url("/common/assets/img/information/icon-select.png") #fff no-repeat;
  background-position: top 50% right 12px;
}

@media screen and (max-width: 768px) {
  .content-info .tabWrap #select-date {
    display: block;
    width: 100%;
  }
}

.content-info .tabWrap #select-date select {
  border: 1px solid #a9bdcd;
  padding: 12px 12px 12px 15px;
  min-width: 240px;
  color: #8ba5b3;
  width: 100%;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .content-info .tabWrap #select-date select {
    padding: 12px 35px 12px 15px;
  }
}

@media screen and (max-width: 768px) {
  .content-info .tabWrap #select-date select {
    padding: 16px 35px 16px 15px;
    min-width: 100%;
  }
}

.content-info .contentWrap .item {
  display: none;
}

.content-info .contentWrap .item.active {
  display: block;
}

#page-privacy_index {
  line-height: 1.8;
}

#page-privacy_index .txt-privacy {
  color: #333333;
  margin-bottom: 60px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  #page-privacy_index .txt-privacy {
    margin-bottom: 45px;
  }
}

#page-privacy_index .ct-privacy {
  background: #fff;
  color: #333333;
  line-height: 1.8;
  padding: 45px 40px 30px;
  margin-bottom: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  #page-privacy_index .ct-privacy {
    padding: 55px 25px 20px;
  }
}

#page-privacy_index .ct-privacy ol {
  padding-left: 15px;
}

#page-privacy_index .ct-privacy ol li {
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  #page-privacy_index .ct-privacy ol li {
    margin-bottom: 35px;
  }
}

#page-privacy_index .ct-privacy ol li:last-child {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #page-privacy_index .ct-privacy ol li:last-child {
    margin-bottom: 20px;
  }
}

#page-privacy_index .ct-privacy .content {
  padding-left: 12px;
}

#page-privacy_index .ct-privacy h3 {
  color: #0073d7;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 1.5rem;
}

#page-privacy_index .ct-privacy ul {
  margin-bottom: 25px;
}

#page-privacy_index .ct-privacy ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
}

#page-privacy_index .ct-privacy ul li:before {
  content: "";
  height: 4px;
  width: 4px;
  position: absolute;
  left: 5px;
  background: #333333;
  top: 12px;
  border-radius: 50%;
}

#page-privacy_index .ct-privacy ul li ul {
  margin-top: 5px;
}

#page-privacy_index .ct-privacy ul li ul li {
  padding-left: 0;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page-privacy_index .ct-privacy ul li ul li:before {
  display: none;
}

#page-privacy_index .ct-privacy ul li ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 4px;
}

#page-privacy_index .date-privacy {
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 1.5rem;
}

#page-privacy_index .txt-right {
  text-align: right;
  font-size: 15px;
  font-size: 1.5rem;
}

.page-head-privacy {
  background: #fff;
}

.page-head-privacy .page-main-ttl {
  color: #333;
}

.page-head-privacy .page-main-ttl .en {
  color: #8bb3eb;
}

/* Z-INDEX */
.formError {
  z-index: 5;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.ui-dialog .formError {
  z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #dd0000;
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 6px 4px 6px;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  display: none;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

#main-header.blue {
  background: #fff;
}

@media screen and (min-width: 1025px) {
  #main-header.blue .function-wrap {
    width: 100%;
  }
  #main-header.blue .logo {
    display: none;
  }
  #main-header.blue .header-inner {
    position: relative;
  }
  #main-header.blue .function {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  #main-header.blue .function-wrap .function .font-size .btn-size {
    color: #0073d7;
    border: 1px solid #0073d7;
    background: none;
  }
  #main-header.blue .function-wrap .function .font-size .btn-size.active {
    color: #fff;
    background: #0073d7;
  }
  #main-header.blue .function-wrap .function .search-box {
    border: 1px solid #0073d7;
  }
  #main-header.blue .function-wrap .function .search-box .btn-submit #icn-submit {
    fill: #0073d7;
  }
  #main-header.blue .navGlobal {
    padding: 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: solid 1px #d1d7e1;
    border-bottom: solid 1px #d1d7e1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ffffff;
  }
  #main-header.blue .navGlobal .logo-fixed {
    display: block;
    width: 140px;
    float: left\9;
    margin: 6px 0 11px\9;
  }
  #main-header.blue .navGlobalIn {
    display: inline-block\9;
    float: right\9;
    height: 100%;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  #main-header.blue .navGlobalIn {
    -ms-flex-preferred-size: calc(100% - 140px);
        flex-basis: calc(100% - 140px);
    max-width: calc(100% - 140px);
  }
}

@media screen and (min-width: 1025px) {
  #main-header.blue .navGlobalIn .nav-item {
    display: inline-block\9;
    float: left\9;
    vertical-align: middle\9;
  }
  #main-header.blue .navGlobalIn .nav-item.nav-tx {
    display: block;
    height: 100%;
  }
  #main-header.blue .navGlobalIn .nav-item a {
    color: #0073d7;
  }
  #main-header.blue .navGlobalIn .nav-item a.nav-link:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    background-image: url(/common/assets/img/common/icon_internal-link-B_bl_dwn.png);
    background-image: url(/common/assets/img/common/icon_internal-link-B_bl_dwn_ie.png) \9;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -8px\9;
    width: 14px;
    height: 14px;
  }
  #main-header.blue .navGlobalIn .nav-item.nav-personal a {
    color: #fff !important;
    border: 1px solid #0073d7;
    background: #0073d7;
  }
  #main-header.blue .navGlobalIn .nav-item.nav-personal a:after {
    background-image: url(/common/assets/img/common/icon_external-link_wh.png);
    background-image: url(/common/assets/img/common/icon_external-link_wh_ie.png) \9;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -7px\9;
  }
  #main-header.blue.is-animation .function-wrap .function .font-size .btn-size {
    color: #0073d7;
    border: 1px solid #0073d7;
    background: none;
  }
  #main-header.blue.is-animation .function-wrap .function .font-size .btn-size.active {
    color: #fff;
    background: #0073d7;
  }
  #main-header.blue.is-animation .function-wrap .function .search-box {
    border: 1px solid #0073d7;
  }
  #main-header.blue.is-animation .function-wrap .function .search-box .btn-submit #icn-submit {
    fill: #0073d7;
  }
  #main-header.blue.is-animation .navGlobalIn .nav-item a:before {
    /*background-color: $key-color-blue;*/
  }
  #main-header.blue.is-animation .navGlobalIn .nav-item.nav-personal a {
    border: 1px solid #0073d7;
  }
  #main-header.blue.is-animation .navGlobalIn .nav-item.nav-personal a:after {
    background-color: #0073d7;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-header.blue.is-animation .navGlobalIn .nav-item.nav-personal a:hover {
    color: #fff;
    background: #0073d7;
  }
  #main-header.blue .hover-trigger {
    display: block;
    height: 100%;
  }
}

#main-header.blue.is-animation {
  background: #fff;
}

@media screen and (max-width: 1024px) {
  #main-header.blue {
    border-bottom: 1px solid #d1d7e1;
    background: #ffffff;
  }
  #main-header.blue .header-inner {
    padding: 0 6.66%;
  }
  #main-header.blue .logo {
    display: none;
  }
  #main-header.blue .logo-sp {
    display: block;
    max-width: 50%;
    width: auto;
    height: 50px;
  }
  #main-header.blue .logo-sp span {
    display: block;
    color: #333;
  }
  #main-header.blue .btn-parsonal {
    border: 1px solid #0073d7;
    background: #0073d7;
    border-radius: 30px;
  }
  #main-header.blue .btn-parsonal:before {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: #fff;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 12px;
    background-position: right 10px center;
    background-repeat: no-repeat;
  }
  #main-header.blue .navToggle span {
    border-bottom: solid 2px #333333;
  }
  #main-header.blue.is-animation {
    background: #fff;
    border-bottom: 1px solid #d1d7e1;
  }
  #main-header.blue.is-animation .btn-parsonal:before {
    background-color: #fff;
    -webkit-mask-image: url("/common/assets/img/common/icon_external-link.svg");
    mask-image: url("/common/assets/img/common/icon_external-link.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  #main-header.blue.is-animation .navToggle span {
    border-bottom: solid 2px #333;
  }
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.progress span {
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: solid 2px #91b3d1;
  margin-right: 160px;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 70px;
  color: #91b3d1;
  font-weight: bold;
}

.progress span:after {
  content: "";
  position: absolute;
  width: 136px;
  height: 2px;
  background: #91b3d1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -148px;
}

.progress span:last-child {
  margin-right: 0;
}

.progress span:last-child:after {
  display: none;
}

.progress span.active {
  color: #fff;
  background: #91b3d1;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .progress span {
    width: 62px;
    height: 62px;
    line-height: 62px;
    margin-right: 44px;
  }
  .progress span:after {
    width: 27px;
    right: -36px;
  }
}

.sec-contact {
  padding-top: 100px;
  padding-bottom: 120px;
}

.sec-contact .progress {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .sec-contact .progress {
    margin-bottom: 45px;
  }
}

.sec-contact .bold {
  font-weight: bold;
  margin-bottom: 22px;
}

.sec-contact .bold span {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .sec-contact .fs15 {
    text-align: justify;
    line-height: 1.6;
  }
}

.sec-contact .about-detail {
  margin-top: 43px;
}

.sec-contact .note-form {
  margin-bottom: 65px;
}

.sec-contact .input-checkbox {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sec-contact .input-checkbox {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .sec-contact {
    padding-top: 60px;
    padding-bottom: 62px;
  }
}

.input-text {
  border: 1px solid #abbecb;
  height: 50px;
  padding: 10px;
  width: 100%;
  background: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  color: #333;
}

.input-text::-webkit-input-placeholder {
  color: #8ba5b3;
}

.input-text:-ms-input-placeholder {
  color: #8ba5b3;
}

.input-text::-ms-input-placeholder {
  color: #8ba5b3;
}

.input-text::placeholder {
  color: #8ba5b3;
}

.textarea {
  border: 1px solid #abbecb;
  padding: 10px;
  width: 100%;
  background: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  height: 186px;
  resize: none;
  display: block;
}

.textarea::-webkit-input-placeholder {
  color: #8ba5b3;
}

.textarea:-ms-input-placeholder {
  color: #8ba5b3;
}

.textarea::-ms-input-placeholder {
  color: #8ba5b3;
}

.textarea::placeholder {
  color: #8ba5b3;
}

.select {
  border: 1px solid #abbecb;
  height: 50px;
  padding: 10px;
  width: 100%;
  font-size: 15px;
  font-size: 1.5rem;
  background: #fff url(/common/assets/img/common/down.png) no-repeat right 15px center;
}

.about-detail {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .about-detail {
    border-bottom: 1px solid #a9bdcd;
  }
}

@media screen and (max-width: 800px) {
  .about-detail .input4 {
    margin-bottom: 0 !important;
  }
}

.about-detail.contact {
  display: block;
}

@media screen and (max-width: 768px) {
  .about-detail.contact {
    border-bottom: 1px solid #a9bdcd;
  }
}

.about-detail.contact dd {
  padding: 20px 25px;
  padding-right: 7%;
}

@media screen and (max-width: 768px) {
  .about-detail.contact dd {
    padding: 0 0 23px;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .about-detail.contact dd.align-middle {
    padding-top: 0;
  }
}

@media screen and (min-width: 1281px) {
  .about-detail.contact dd.align-middle {
    padding-top: 33px;
  }
}

.about-detail.contact dd.align-middle--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-detail.contact dd.align-middle--flex > * {
  padding-top: 0;
  margin-top: -10px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.about-detail.contact dd .input-text {
  width: 100%;
}

.about-detail.contact dd label {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .about-detail.contact dd input, .about-detail.contact dd select, .about-detail.contact dd textarea {
    margin-top: 15px;
  }
}

.about-detail.contact dt {
  position: relative;
  padding: 33px 25px 30px 25px;
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .about-detail.contact dt {
    padding: 55px 25px 30px 25px;
  }
  .about-detail.contact dt.is-option {
    padding: 20px 25px 30px 25px;
  }
}

@media screen and (max-width: 768px) {
  .about-detail.contact dt.none {
    height: 26px;
    margin-bottom: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .about-detail.contact dt {
    padding: 32px 0 0;
  }
}

.about-detail.contact dt .btnCom1 {
  position: absolute;
  top: 32px;
  right: 24px;
}

@media screen and (max-width: 768px) {
  .about-detail.contact dt .btnCom1 {
    right: 0;
  }
}

@media screen and (min-width: 800px) and (max-width: 1280px) {
  .about-detail.contact dt .btnCom1 {
    top: 20px !important;
    left: 20px;
    width: 50px;
  }
}

.about-detail.contact dt .btnCom1.align-middle {
  top: 59px;
}

@media screen and (max-width: 768px) {
  .about-detail.contact dt .btnCom1.align-middle {
    top: 32px;
  }
}

.about-detail.contact .spam-check img {
  width: 120px;
  height: 60px;
}

@media screen and (min-width: 1025px) {
  .about-detail.contact .spam-check + .about-detail-dd p {
    margin-bottom: 10px;
  }
}

.about-detail .about-detail-dd__inner {
  position: relative;
}

.about-detail .about-detail-dd__inner .formError {
  top: 100% !important;
}

.about-detail .about-detail-dd__inner.__plural02 {
  -ms-flex-preferred-size: calc((100% - 24px)/2);
      flex-basis: calc((100% - 24px)/2);
}

@media screen and (max-width: 768px) {
  .about-detail .about-detail-dd__inner.__plural02 {
    -ms-flex-preferred-size: 40.9vw;
        flex-basis: 40.9vw;
  }
}

@media screen and (min-width: 769px) {
  .about-detail .about-detail-dd__inner.__plural02:nth-child(n+2) {
    margin-left: 24px;
  }
}

.about-detail .about-detail-dd__inner.__plural03 {
  -ms-flex-preferred-size: 29.95%;
      flex-basis: 29.95%;
}

@media screen and (max-width: 768px) {
  .about-detail .about-detail-dd__inner.__plural03 {
    -ms-flex-preferred-size: 25.7vw;
        flex-basis: 25.7vw;
  }
}

/*追加*/
.about_txt {
	color: #0073d7;
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 26px;
	font-size: 2.6rem;
}


.group-input02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .group-input02 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.group-input03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 474px;
  font-size: 0;
}

.group-input03 span {
  display: inline-block;
  -ms-flex-preferred-size: 5.075%;
      flex-basis: 5.075%;
  text-align: center;
  line-height: 50px;
  font-size: 0;
  background: url(/common/assets/img/common/line.jpg) no-repeat center center;
}

@media screen and (max-width: 768px) {
  .group-input03 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
  }
  .group-input03 input {
    margin-top: 15px;
  }
  .group-input03 span {
    width: 15px;
    width: 1.5vw;
    line-height: 50px;
    height: 50px;
    margin-top: 15px;
  }
}

.input-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .input-checkbox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.input-checkbox input {
  display: none;
}

.input-checkbox input:checked + label:before {
  border: 1px solid #0073d7;
}

.input-checkbox input:checked + label:after {
  display: block;
}

.input-checkbox label {
  padding-left: 38px;
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .input-checkbox label {
    padding-left: 6vw;
  }
}

.input-checkbox label:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: solid 1px #8ba5b3;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.input-checkbox label:after {
  margin-top: -4px;
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 1px;
  width: 12px;
  height: 4px;
  border-left: 2px solid #0073d7;
  border-bottom: 2px solid #0073d7;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.group-btn02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.group-btn02 button, .group-btn02 a {
  margin: 0 12px;
}

@media screen and (max-width: 768px) {
  .group-btn02 button, .group-btn02 a {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
  }
}

.txt-center {
  text-align: center;
}

.txt-note01 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #8ba5b3;
  font-weight: bold;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.txt-note01::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: #8ba5b3;
  -webkit-mask-image: url("/common/assets/img/common/icon_internal-link-A.svg");
          mask-image: url("/common/assets/img/common/icon_internal-link-A.svg");
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.txt-note01:hover {
  opacity: 0.6;
}

#page-contact_index .inner,
#page-contact_confirm_index .inner,
#page-contact_completed_index .inner {
  max-width: 1160px;
}

#page-contact_confirm_index .group-btn02,
#page-hearing_confirm_index .group-btn02 {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  #page-contact_confirm_index .group-btn02,
  #page-hearing_confirm_index .group-btn02 {
    margin-bottom: 10px;
  }
}

#page-contact_confirm_index .about-detail,
#page-hearing_confirm_index .about-detail {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #page-contact_confirm_index .about-detail,
  #page-hearing_confirm_index .about-detail {
    margin-bottom: 40px;
  }
}

.complete-contact .fs15 {
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.7;
}

.complete-contact .bold {
  margin-bottom: 36px;
}

.complete-contact .btnCom3 {
  display: inline-block;
}

.complete-contact .complete-message {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .complete-contact .complete-message {
    text-align: left;
  }
}

.contact .btnBasic.icn-arrow {
  font-family: inherit;
}

.contact .btnBasic.icn-arrow > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.contact .btnBasic.icn-arrow > span:before {
  position: static;
  margin-right: 14px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.contact-ttl {
  margin-bottom: 25px;
  padding-left: 14px;
  border-left: 5px solid #0073d7;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.33;
}

@media screen and (max-width: 768px) {
  .contact-ttl {
    margin-bottom: 21px;
    font-size: 1.8rem;
  }
}

.contact-section {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .contact-section {
    margin-top: 22px;
  }
}

.contact-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .contact-col {
    margin-top: -13px;
  }
}

.contact-col__item {
  position: relative;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .contact-col__item {
    margin-top: 13px;
    margin-right: 30px;
  }
}

.contact-col__item:last-child {
  margin-right: 0;
}

.contact-col__item .formError {
  top: 100% !important;
}

.contact-col__item .formErrorContent {
  white-space: nowrap;
}

.contact-form-btn {
  position: absolute;
  opacity: 0;
}

.contact-form-btn[type="checkbox"] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

.contact-form-btn[type="radio"] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}

.contact-form-label {
  position: relative;
  margin: 0 !important;
  padding-left: 26px;
  cursor: pointer;
}

.contact-form-label--radio {
  background: url(/common/assets/img/common/bg_radio_off.png) left center/16px no-repeat;
}

[type="radio"]:checked + .contact-form-label--radio {
  background-image: url(/common/assets/img/common/bg_radio_on.png);
}

.contact-form-label--checkbox {
  background: url(/common/assets/img/common/bg_checkbox_off.png) left center/16px no-repeat;
}

[type="checkbox"]:checked + .contact-form-label--checkbox:after {
  display: block;
  margin-top: -4px;
  content: '';
  position: absolute;
  top: 50%;
  left: 1px;
  width: 12px;
  height: 4px;
  border-left: 2px solid #0073d7;
  border-bottom: 2px solid #0073d7;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.contact-toggle.is-hidden {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .contact-dt-double__ico {
    top: 47px !important;
  }
}

@media screen and (min-width: 1281px) {
  .contact-dd-double {
    padding-top: 46px !important;
  }
}

#page-template_index .page-head {
  background-image: url(/common/assets/img/information/mv-pc_ne.png);
}

@media screen and (max-width: 768px) {
  #page-template_index .page-head {
    background-image: url(/common/assets/img/information/mv-sp_ne.png);
  }
}

.txtabout {
  font-size: 14px;
  margin-top: 5px;
}

.is-pc .rollover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.txtabout a {
  color: #0073d7;
}

/*cookie追加*/
#page-cookie_index {
  line-height: 1.8;
}

#page-cookie_index .txt-cookie {
  color: #333333;
  margin-bottom: 60px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  #page-cookie_index .txt-cookie {
    margin-bottom: 45px;
  }
}

#page-cookie_index .ct-cookie {
  background: #fff;
  color: #333333;
  line-height: 1.8;
  padding: 45px 40px 30px;
  margin-bottom: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  #page-cookie_index .ct-cookie {
    padding: 55px 25px 20px;
  }
}

#page-cookie_index .ct-cookie ol {
  padding-left: 15px;
}

#page-cookie_index .ct-cookie ol li {
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  #page-cookie_index .ct-cookie ol li {
    margin-bottom: 35px;
  }
}

#page-cookie_index .ct-cookie ol li:last-child {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #page-cookie_index .ct-cookie ol li:last-child {
    margin-bottom: 20px;
  }
}

#page-cookie_index .ct-cookie .content {
  padding-left: 12px;
}

#page-cookie_index .ct-cookie h3 {
  color: #0073d7;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 1.5rem;
}

#page-cookie_index .ct-cookie ul {
  margin-bottom: 25px;
}

#page-cookie_index .ct-cookie ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
}

#page-cookie_index .ct-cookie ul li:before {
  content: "";
  height: 4px;
  width: 4px;
  position: absolute;
  left: 5px;
  background: #333333;
  top: 12px;
  border-radius: 50%;
}

#page-cookie_index .ct-cookie ul li ul {
  margin-top: 5px;
}

#page-cookie_index .ct-cookie ul li ul li {
  padding-left: 0;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page-cookie_index .ct-cookie ul li ul li:before {
  display: none;
}

#page-cookie_index .ct-cookie ul li ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 4px;
}

#page-cookie_index .date-cookie {
  margin-top: 20px;
  font-size: 15px;
  font-size: 1.5rem;
}

#page-cookie_index .txt-right {
  text-align: right;
  font-size: 15px;
  font-size: 1.5rem;
}

.page-head-cookie {
  background: #fff;
}

.page-head-cookie .page-main-ttl {
  color: #333;
}

.page-head-cookie .page-main-ttl .en {
  color: #8bb3eb;
}


.cookie_box {
	margin-bottom: 50px;
}

.mb20 {
	margin-bottom: 20px;	
}

.mb10 {
	margin-bottom: 10px;	
}

.mb30 {
	margin-bottom: 30px;	
}

.mb50 {
	margin-bottom: 50px;	
}
.cookie_title {
	color: #000000;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 5px;
}

.cookie_list li{
	list-style-type: none;
	vertical-align: bottom;
}

.cookie_h3 {
  color: #0073d7;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 2.0rem;
}

.date-cookie {
  margin-top: 20px;
  font-size: 15px;
  font-size: 1.5rem;
}

.cookkie_li {
	margin-left: 10px;
}

.ct-cookie img{
	vertical-align: middle;
	margin-left: 5px;
}

.inquiry{
	font-weight: bold;
	font-size: 16px;
}


.ct-cookie .rollover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}



/*外貨*/

#page-gaika_index .page-head {
  background-image: url("/common/assets/img/shoplist/mv-pc_ne.png");
}

@media screen and (max-width: 768px) {
  #page-gaika_index .page-head {
    background-image: url("/common/assets/img/shoplist/mv-sp_ne.png");
  }
	#page-gaika_index .page-main-ttl {
    margin: 0 20px;
  }
}


#page-gaika_index .inner {
  max-width: 1160px;
}

#page-gaika_index .about-detail {
  margin-bottom: 0;
}

#page-gaika_index .sec-gaika {
  padding: 100px 0 120px;
}

@media screen and (max-width: 768px) {
  #page-gaika_index .sec-gaika {
    padding: 60px 0 60px;
  }
}

#page-gaika_index .subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  #page-gaika_index .subtitle {
    margin-bottom: 45px;
  }
}
#page-gaika_index .title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #page-gaika_index .title {
	margin-bottom: 20px;
	margin-top: 40px;
  }
}

#page-index .sec-gaika {
  background: #e1effb;
  border-top: 1px solid #d1d7e1;
  border-bottom: 1px solid #d1d7e1;
}

@media screen and (max-width: 1024px) {
  #page-gaika_index .sec-gaika.sec-flex-box .txt-box {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  #page-gaika_index .sec-gaika.sec-flex-box .txt-box {
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
}

#page-gaika_index .sec-gaika dl dt{
	text-align: center;
	font-size: 20px;
}

.sec-gaika dl dd a{
	color: #0073d7;
	text-decoration: underline;

}


.sec-gaika dl dd a[target="_blank"]{
  position: relative;
}
.sec-gaika dl dd a[target="_blank"]::after{
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url("/common/assets/img/top/icon_external-link_bl.png");
  background-size: contain;
  margin-left: 5px;
  position: relative;
  top: 1px;
}



.sec-gaika dl dt.chiba  {
	background-image: url("/common/assets/img/shoplist/exchange/chibagin_logo.gif");
	background-size: auto auto;
	background-repeat: no-repeat;
	background-position: 50% 75%;
}
@media screen and (max-width: 768px) {
  .sec-gaika dl dt.chiba  {
	background-image: none;
}
}
.sec-gaika dl dt.keiyo  {
	background-image: url("/common/assets/img/shoplist/exchange/keiyou_logo.gif");
	background-size: auto auto;
	background-repeat: no-repeat;
	background-position: 50% 70%;
}

@media screen and (max-width: 768px) {
  .sec-gaika dl dt.keiyo  {
	background-image: none;
}
}

.gaika-detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #A9BDCD;
}

@media screen and (max-width: 768px) {
  .gaika-detail dl {
    /*border: 0;*/
    display: block;
  }
}

.gaika-detail dl dt, .gaika-detail dl dd {
	border-top: 1px solid #A9BDCD;
	padding-top: 25px;
	padding-right: 25px;
	padding-left: 25px;
	padding-bottom: 35px;
	font-size: 15px;
	color: #333333;
	line-height: 1.8;
}


.gaika-detail dl dt {
  background-color: #EBEFF5;
  font-weight: bold;
  width: 25%;
}

@media screen and (min-width: 769px) {
  .gaika-detail dl dt {
    border-left: 1px solid #A9BDCD;
    border-right: 1px solid #A9BDCD;
  }
}

@media screen and (max-width: 768px) {
  .gaika-detail dl dt {
	padding-top: 10px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #A9BDCD;
	width: 100%;
  }
}

.gaika-detail dl dd {
  width: calc(100% - 25%);
}

@media screen and (min-width: 769px) {
  .gaika-detail dl dd {
    border-right: 1px solid #A9BDCD;
  }
}

@media screen and (max-width: 768px) {
  .gaika-detail dl dd {
	border-top: 0;
	padding-top: 15px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 30px;
	width: 100%;
  }
}

.gaika-detail a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}


/*代引き*/

#page-tsuhan_index .page-head {
  background-image: url("/common/assets/img/shoplist/mv-pc_ne.png");
}

@media screen and (max-width: 768px) {
  #page-tsuhan_index .page-head {
    background-image: url("/common/assets/img/shoplist/mv-sp_ne.png");

  }
}

#page-tsuhan_index .inner {
  max-width: 1160px;
}

#page-tsuhan_index .about-detail {
  margin-bottom: 0;
}

#page-tsuhan_index .sec-tsuhan {
  padding: 100px 0 120px;
}

@media screen and (max-width: 768px) {
  #page-tsuhan_index .sec-tsuhan {
    padding: 60px 0 60px;
  }
}

@media screen and (max-width: 768px) {
  #page-tsuhan_index .page-main-ttl {
	margin: 0 30px;
  }
}

#page-tsuhan_index .subtitle {
  font-size: 16px;
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  #page-tsuhan_index .subtitle {
    margin-bottom: 45px;
  }
}
#page-tsuhan_index .title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #page-tsuhan_index .title {
	margin-bottom: 20px;
	margin-top: 40px;
  }
}

#page-index .sec-tsuhan {
  background: #e1effb;
  border-top: 1px solid #d1d7e1;
  border-bottom: 1px solid #d1d7e1;
}

@media screen and (max-width: 1024px) {
  #page-index .sec-tsuhan.sec-flex-box .txt-box {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  #page-index .sec-tsuhan.sec-flex-box .txt-box {
    padding-top: 60px;
    padding-top: 16vw;
    /* 750 = design width, mobile only */
    padding-bottom: 60px;
    padding-bottom: 16vw;
    /* 750 = design width, mobile only */
  }
}


.tsuhan-table{
	margin: 0 auto;
	width: 100%;
}

.tsuhan-table table {
	width: calc((100% - 40px) / 2);
	margin: 0 auto;
	border: 1px solid #A9BDCD;
}
@media screen and (max-width: 768px) {
	.tsuhan-table table {
	width: 90%;
	margin-bottom: 20px;		
	}
}	
table.yamato{
	float: left;
	overflow-x: hidden;	
}

@media screen and (max-width: 768px) {
  table.yamato{
	float: none;
	}
}	

@media screen and (max-width: 768px) {
  table td img{
	width: 50vw;
	}
}	
.tsuhan-table th {
	background-color: #EBEFF5;
	font-size: 20px;
	border-bottom: 1px solid #A9BDCD;
	text-align: center;
	font-weight: bold;
	padding: 5px 0;
}

.tsuhan-table td {
	border: 1px solid #A9BDCD;
	text-align: center;
	padding-top: 15px;
	padding-left: 10px;
	padding-bottom: 15px;
	font-size: 16px;
	padding-right: 10px;
}

.s-font{
	font-size: 90%;
	margin-top: 10px;
}

.debit{
	color: #003399;
}

.tsuhan-table td a{
	color: #0073d7;
	text-decoration: underline;
	-webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.tsuhan-table td a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.tsuhan-table td a.blank{
  position: relative;
}
.tsuhan-table td a.blank::after{
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url("/common/assets/img/top/icon_external-link_bl.png");
  background-size: contain;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.error{
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 30px;
  color: #eb0000;
  font-weight: bold;
}

.group-input .error{
  text-align: left;
  margin-left: 115px;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .group-input .error{
    margin-left: 10px;
  }
}


