@charset "UTF-8";
/* ===== RESET ===== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/* ===== end - RESET ===== */
.menuBtn.close span:before {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}

.menuBtn.close span:after {
  -webkit-animation: menu-bar03 .75s forwards;
  animation: menu-bar03 .75s forwards;
  -webkit-animation: menu-bar03 .75s forwards;
  animation: menu-bar03 .75s forwards;
}

.menuBtn.open span:before {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
}

.menuBtn.open span:after {
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
}

.menuBtn.open div:before {
  opacity: 0;
}

@-webkit-keyframes menu-bar01 {
  0% {
    top: 50%;
    background: #420068;
    -webkit-transform: translateY(-1px) rotate(45deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-1px) rotate(0);
  }
  100% {
    top: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    top: 50%;
    background: #420068;
    -webkit-transform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-1px) rotate(0);
    transform: translateY(-1px) rotate(0);
  }
  100% {
    top: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar03 {
  0% {
    bottom: 50%;
    background: #420068;
    -webkit-transform: translateY(1px) rotate(-45deg);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(1px) rotate(0);
  }
  100% {
    bottom: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar03 {
  0% {
    bottom: 50%;
    background: #420068;
    -webkit-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(1px) rotate(0);
    transform: translateY(1px) rotate(0);
  }
  100% {
    bottom: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    top: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-1px) rotate(0);
  }
  100% {
    top: 50%;
    background: #420068;
    -webkit-transform: translateY(-1px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    top: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-1px) rotate(0);
    transform: translateY(-1px) rotate(0);
  }
  100% {
    top: 50%;
    background: #420068;
    -webkit-transform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    bottom: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(1px) rotate(0);
  }
  100% {
    bottom: 50%;
    background: #420068;
    -webkit-transform: translateY(1px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    bottom: 0;
    background: #420068;
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(1px) rotate(0);
    transform: translateY(1px) rotate(0);
  }
  100% {
    bottom: 50%;
    background: #420068;
    -webkit-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
  }
}
/* ===== ANIMATION ===== */
/*.fadeInUp {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(0, 50px);
	transform: translate(0, 50px);
	-webkit-transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
	transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
} */
.fadeInUp,
.fadeInUp_delay {
  opacity: 0;
  transform: translateY(40px);
}

.fadeInUp_in-row .anim {
  opacity: 0;
  transform: translateY(40px);
}

.fadeInUp.active,
.fadeInUp_delay.active,
.fadeInUp_in-row .anim.active {
  -webkit-transition: all 1.6s cubic-bezier(0.41, -0.1, 0, 1);
  transition: all 1.6s cubic-bezier(0.41, -0.1, 0, 1);
}

.fadeInUp_delay.active {
  transition-delay: .25s;
}

.fadeInRtoL,
.fadeInRtoL_in-row .anim {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(1em, 0);
  transform: translate(1em, 0);
}

.fadeInLtoR,
.fadeInLtoR_in-row .anim {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(-99%, 0);
  transform: translate(-99%, 0);
}

.fadeInRtoL.active,
.fadeInRtoL_in-row .anim.active,
.fadeInLtoR.active,
.fadeInLtoR in-row .anim.active {
  -webkit-transition: all 2.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fadeInUp.active,
.fadeInUp_delay.active,
.fadeInUp_in-row .anim.active,
.fadeIn.active,
.fadeIn_delay.active,
.fadeInRtoL.active,
.fadeInRtoL_in-row .anim.active,
.fadeInLtoR.active,
.fadeInLtoR_in-row .anim.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeinup.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.textFadeInUp_in-row {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity .15s ease-out;
  transition: opacity .15s ease-out;
}

.textFadeInUp_in-row.active {
  opacity: 1;
}

.textFadeInUp_in-row .item {
  -webkit-transition: opacity 0.35s cubic-bezier(0.075, 0.82, 0.165, 1) 0.025s, -webkit-transform 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.35s cubic-bezier(0.075, 0.82, 0.165, 1) 0.025s, -webkit-transform 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.35s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.35s cubic-bezier(0.075, 0.82, 0.165, 1) 0.025s;
  transition: transform 0.35s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.35s cubic-bezier(0.075, 0.82, 0.165, 1) 0.025s, -webkit-transform 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate(-0.05em, 1.25em) scale(0.95);
  transform: translate(-0.05em, 1.25em) scale(0.95);
}

.textFadeInUp_in-row .item.active {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}

.animItem, .anim {
  /*	visibility: hidden; */
  will-change: transform;
}

/*
.animItem.active, .anim.active {
	visibility: visible;
}*/
.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* ===== end - ANIMATION ===== */
/* ===== EFFECT ===== */
/* ttl effect */
@-webkit-keyframes slideEffect {
  0% {
    color: transparent;
  }
  45% {
    color: transparent;
  }
  100% {
    color: #101010;
  }
}
@keyframes slideEffect {
  0% {
    color: transparent;
  }
  45% {
    color: transparent;
  }
  100% {
    color: #101010;
  }
}
@-webkit-keyframes slideEffect2 {
  0% {
    color: transparent;
  }
  45% {
    color: transparent;
  }
  100% {
    color: #fff;
  }
}
@keyframes slideEffect2 {
  0% {
    color: transparent;
  }
  45% {
    color: transparent;
  }
  100% {
    color: #fff;
  }
}
@-webkit-keyframes slideEffectBar {
  0% {
    left: 0;
    right: 100%;
  }
  25% {
    left: 0;
    right: 0;
  }
  45% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
@keyframes slideEffectBar {
  0% {
    left: 0;
    right: 100%;
  }
  25% {
    left: 0;
    right: 0;
  }
  45% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
@-webkit-keyframes slideEffectAfter {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes slideEffectAfter {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
/* end - ttl effect */
/* scroll btn */
@-webkit-keyframes btnHvr_color {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #4bb9ff;
  }
}
@keyframes btnHvr_color {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #4bb9ff;
  }
}
@-webkit-keyframes btnHvr2_color {
  0% {
    color: #4bb9ff;
  }
  50% {
    color: #4bb9ff;
  }
  100% {
    color: #fff;
  }
}
@keyframes btnHvr2_color {
  0% {
    color: #4bb9ff;
  }
  50% {
    color: #4bb9ff;
  }
  100% {
    color: #fff;
  }
}
@-webkit-keyframes btnHvr {
  0% {
    border-color: #fff;
  }
  50% {
    border-color: #fff;
  }
  100% {
    border-color: #dcebf5;
  }
}
@keyframes btnHvr {
  0% {
    border-color: #fff;
  }
  50% {
    border-color: #fff;
  }
  100% {
    border-color: #dcebf5;
  }
}
@-webkit-keyframes btnHvr2 {
  0% {
    border-color: #dcebf5;
  }
  50% {
    border-color: #dcebf5;
  }
  100% {
    border-color: #fff;
  }
}
@keyframes btnHvr2 {
  0% {
    border-color: #dcebf5;
  }
  50% {
    border-color: #dcebf5;
  }
  100% {
    border-color: #fff;
  }
}
@-webkit-keyframes hvr {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes hvr {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes hvr2 {
  0% {
    right: 100%;
  }
  50% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}
@keyframes hvr2 {
  0% {
    right: 100%;
  }
  50% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}
/* end - scroll btn */
/* ===== end - EFFECT ===== */
/* ===== FLEX BOX ===== */
/* more than 768px
------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .colWrap {
    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;
  }

  .colWrap.rtl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .colWrap.col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .colWrap.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .colWrap.boxAlign-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .colWrap.boxAlign-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .colWrap.boxAlign-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .colWrap.mdl > *,
  .colWrap > .mdl:not(.colWrap) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .colWrap.mdl.ct > *,
  .colWrap.mdl > .ct,
  .colWrap > .mdl.ct:not(.colWrap) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .colWrap.col2 > * {
    width: 50%;
  }

  .colWrap.col3 > * {
    width: 33.33%;
  }

  .colWrap.col4 > * {
    width: 25%;
  }

  .colWrap.col5 > * {
    width: 20%;
  }
}
/* from 768px to 991px
------------------------------------------------------------*/
@media print, screen and (min-width: 768px) and (max-width: 991px) {
  .tab-colWrap {
    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;
  }

  .tab-colWrap.tab-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .tab-colWrap.tab-boxAlign-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .tab-colWrap.tab-boxAlign-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .tab-colWrap.tab-boxAlign-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tab-colWrap.tab-mdl > *,
  .tab-colWrap > .tab-mdl:not(.tab-colWrap) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .tab-colWrap.tab-mdl.ct > *,
  .tab-colWrap.tab-mdl > .ct,
  .tab-colWrap > .tab-mdl.ct:not(.tab-colWrap) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tab-colWrap.tab-col2 > * {
    width: 50%;
  }

  .tab-colWrap.tab-col3 > * {
    width: 33.33%;
  }

  .tab-colWrap.tab-col4 > * {
    width: 25%;
  }

  .tab-colWrap.tab-col5 > * {
    width: 20%;
  }
}
/* less than 767px
------------------------------------------------------------*/
@media print, screen and (max-width: 767px) {
  .sp-colWrap {
    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;
  }

  .sp-colWrap.rtl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .sp-colWrap.sp-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sp-colWrap.sp-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sp-colWrap.sp-col-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .sp-colWrap.sp-boxAlign-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .sp-colWrap.sp-boxAlign-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .sp-colWrap.sp-boxAlign-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sp-colWrap.sp-mdl > *,
  .sp-colWrap > .sp-mdl:not(.sp-colWrap) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .sp-colWrap.sp-mdl.ct > *,
  .sp-colWrap.sp-mdl > .ct,
  .sp-colWrap > .sp-mdl.ct:not(.sp-colWrap) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sp-colWrap.sp-col2 > * {
    width: 50%;
  }

  .sp-colWrap.sp-col3 > * {
    width: 33.33%;
  }

  .sp-colWrap.sp-col4 > * {
    width: 25%;
  }

  .sp-colWrap.sp-col5 > * {
    width: 20%;
  }
}
/* ===== end - FLEX BOX ===== */
/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  padding: 10px 10px 8px;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.8;
  width: 28%;
  text-align: left;
}

table td {
  padding: 10px 10px 8px;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.8;
}

/* ===== end - TABLE ===== */
/* ===== LIST ===== */
ul {
  margin: 0;
}

dl {
  margin: 0;
}

dl dt {
  font-weight: normal;
  line-height: 1.8;
}

dl dd {
  font-weight: normal;
  line-height: 1.8;
  padding: 5px 0 25px;
}

dl dd:last-child {
  padding-bottom: 0;
}

ul.list_disc li {
  margin: 0 0 0 1.5em;
  list-style-type: disc;
}

ol.list_disc li {
  margin: 0 0 0 1.5em;
  list-style-type: disc;
}

dl.indent dd {
  margin-left: 1em;
}

.list_h {
  overflow: hidden;
  height: auto;
}

.list_h li {
  float: left;
}

.list_h .li {
  float: left;
}

/* ===== end - LIST ===== */
/* ===== FORM ===== */
/* ===== FORM ===== */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="button"],
input[type="submit"],
textarea {
  /* reset */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  font-weight: normal;
  outline: none;
  /* end - reset */
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
  padding: 10px;
  background: #fff;
  border: 1px solid #bebebe;
  font-size: 100%;
}

select {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 4px;
  background: #fff;
  border: 1px solid #bebebe;
  font-size: 100%;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-input-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 4px;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

@media screen and (max-width: 991px) {
  input[type="text"].sp-max,
  input[type="tel"].sp-max,
  input[type="email"].sp-max,
  select.sp-max,
  textarea.sp-max {
    width: 100%;
  }
}
/* ===== end - FORM ===== */
/* ===== end - FORM ===== */
/* ===== MODULES ===== */
.tab, .sp, .sp2 {
  display: none;
}

.sp, .sp2 {
  display: none !important;
}

.pc, .pc.tab {
  display: block;
}

.sp-block, .sp-inline-bloc, .sp-inline {
  display: none;
}

.pc.colWrap, .pc.tab.tab-colWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bg_white {
  background-color: #fff;
}

.bg {
  background: #f5fffc;
}

.bg2 {
  background: #e0e0df;
}

.color01 {
  color: #054d9a;
}

a {
  color: unset;
  cursor: pointer;
  -webkit-transition: ease-out .3s;
  transition: ease-out .5s;
}

a:link {
  color: inherit;
  text-decoration: none;
}

a:active {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=7);
}

.link_txt:link {
  color: #054d9a;
  text-decoration: underline !important;
}

.link_txt:hover {
  color: #054d9a;
  text-decoration: underline !important;
}

.link_txt:active {
  color: #054d9a;
  text-decoration: underline !important;
}

.link_txt:visited {
  color: #054d9a;
  text-decoration: underline !important;
}

a.lined:link {
  text-decoration: underline;
}

a.lined:hover {
  text-decoration: none;
}

a.lined:visited {
  text-decoration: underline;
}

.tel_link {
  color: #101010;
  text-decoration: none;
  pointer-events: none;
}

.tel_link:hover {
  opacity: 1;
  cursor: text;
  text-decoration: none;
}

.f_normal {
  font-weight: normal;
}

.f_bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.block {
  display: block;
}

.in-block {
  display: inline-block;
  width: auto;
}

.block-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.center {
  margin-right: auto;
  margin-left: auto;
}

.hide {
  display: none !important;
}

img {
  border: 0;
}

.img.block-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.img-full {
  display: block;
  width: 100%;
  height: auto;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
  text-align: center;
}

.img-right {
  display: block;
  float: right;
  margin: 0 0 1em 2em;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: center center;';
}

.scroll-wrap {
  overflow-x: auto;
}

.scroll-wrap::-webkit-scrollbar {
  height: 10px;
}

.scroll-wrap::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #aaa;
}

.scroll-wrap::-webkit-scrollbar-track-piece {
  border-radius: 5px;
  background: white;
}

h1,
h2,
h3,
h4,
h5 {
  clear: both;
  margin: 0;
  font-weight: 500;
}

.indent-1 {
  text-indent: -1em;
}

.indent-05 {
  text-indent: -0.5em;
}

/* ===== end - MODULES ===== */
/* ===== MARGIN and PADDING ===== */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

/* ===== end - MARGIN and PADDING ===== */
/* ===== COMMON STYLES ===== */
html {
  font-size: 62.5%;
}

html.fixed {
  overflow: auto;
  height: 100%;
}

body {
  -webkit-tap-highlight-color: transparent;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 1.8;
  line-height: 1.666875;
  letter-spacing: .032em;
}

body:before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-color: #000;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

@media screen and (max-width: 767px) {
  body.fixed {
    /*	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%; */
    overflow: hidden;
    height: 100%;
  }

  body.fixed:before {
    visibility: visible;
    opacity: 0.4;
  }
}
.f_mincho {
  font-family: 'Noto Srif JP', serif;
}

.no_shaggy {
  -webkit-transform: rotate(0.03deg);
  transform: rotate(0.03deg);
}

.noLink {
  pointer-events: none;
  text-decoration: none;
  color: #101010;
}

.em {
  background: #e2ff92;
}

.borderTop {
  position: relative;
  overflow: hidden;
  border: 0;
  height: 1px;
  border-top: #ababab;
  z-index: 1;
}

.borderTop:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-top: 1px dashed #e0e0e0;
  z-index: -1;
}

.borderBtm {
  position: relative;
  overflow: hidden;
  border: 0;
  height: 1px;
  border-bottom: #ababab;
  z-index: 1;
}

.borderBtm:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px dashed #e0e0e0;
  z-index: -1;
}

.wrapper {
  position: relative;
}

.wrapper.noScroll {
  width: 100vw;
  height: 100vh;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: #fff;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
  }
}

header .container,
header .container > .colWrap {
  height: 100%;
}

header .container {
  max-width: 980px;
}

header .logoFrame {
  padding: 0;
}

header .logo {
  display: block;
  vertical-align: middle;
  margin: 0 auto;
  pointer-events: all;
}

header .logo a {
  display: block;
}

header .logo img {
  display: block;
}

header .navFrame .nav_tel > span {
  display: flex;
  align-items: center;
  align-content: center;
}
header .navFrame .nav_tel .txt {
  font-size: 1.125em;
  line-height: 1.2;
  padding-right: 1em;
  text-align: right;
}
header .navFrame .nav_tel .txt .time {
  font-size: 0.7777777778em;
  display: block;
}
header .navFrame .nav_tel .tel {
  position: relative;
  padding-left: .9em;
  font-size: 2.25em;
  color: #000;
  text-decoration: none;
}
header .navFrame .nav_tel .tel:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -3px 0 0;
  width: 0.7777777778em;
  height: 1.0555555556em;
  background: url(../images/ico_tel.png) no-repeat 0 0;
  background-size: contain;
  transform: translate(0, -50%);
}

header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  header .navFrame .nav_tel {
    font-size: .8em;
  }
  header .navFrame .nav_tel .txt .time {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 44px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  header .container {
    padding-right: 0;
  }

  header .container > .colWrap {
    height: 44px;
  }

  header .logoFrame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: center;
    max-width: initial;
    width: 100%;
    position: relative;
    max-width: 151px;
    z-index: 101;
  }

  header .logoFrame .logo {
    margin: 0;
    height: auto;
  }

  header .navFrame {
    margin: 0;
    padding-right: 45px;
    width: calc(100% - 161px);
    max-width: 183px;
  }
  header .navFrame nav, header .navFrame .navi {
    height: 100%;
  }
  header .navFrame .navi > li {
    width: 50%;
  }
  header .navFrame .navi > li a {
    display: flex !important;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  header .navFrame .nav_tel {
    background: #420068;
  }
  header .navFrame .nav_tel a {
    display: inline-block;
    margin: 0 auto;
    padding-left: 1.5em;
    text-align: left;
  }
  header .navFrame .nav_tel a:before {
    width: 1.5em;
    height: 1.5em;
  }
  header .navFrame .nav_mail {
    background: #ff4949;
  }
}
.gnav {
  top: 0;
  width: 100%;
  z-index: 97;
  background: #420068;
}
@media screen and (min-width: 768px) {
  .gnav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-101%);
    transition: transform .3s ease-in-out;
    z-index: 10;
  }
  .gnav.fixed.active {
    transform: translateY(0);
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .gnav.fixed {
    font-size: .85em;
  }
}

.gnav nav {
  width: 100%;
}

.gnav ul {
  width: 100%;
}

.gnav ul > li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  flex: 0 0 auto;
  height: 3.875em;
}

.gnav ul > .nav_tel {
  width: 20em;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .gnav ul > .nav_tel {
    display: flex;
    flex-direction: column;
  }
}
.gnav ul > .nav_tel .support {
  position: relative;
  display: inline-block;
  padding: 0 .6em;
  color: #fcff00;
  font-size: 1.125em;
  line-height: 1.5;
  text-align: center;
}
.gnav ul > .nav_tel .support:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  border: .235em solid transparent;
  border-top: .9em solid #fcff00;
  transform: translateY(-50%) skew(20deg, 0) rotate(-10deg);
}
.gnav ul > .nav_tel .support:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  border: .235em solid transparent;
  border-top: .9em solid #fcff00;
  transform: translateY(-50%) skew(-20deg, 0) rotate(10deg);
}
.gnav ul > .nav_tel .telFrame {
  flex-grow: 1;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: 1;
  padding: .5em .25em;
  background: #fff;
  color: #420068;
}
.gnav ul > .nav_tel .telFrame .tel {
  position: relative;
  padding-left: 1.2em;
  padding-right: .4em;
  font-size: 1.5em;
  color: #000;
  text-decoration: none;
  letter-spacing: .04em;
}
.gnav ul > .nav_tel .telFrame .tel:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -2px 0 0;
  width: 1.0416666667em;
  height: 1.1666666667em;
  background: url(../images/ico_tel_s.png) no-repeat 0 0;
  background-size: contain;
  transform: translate(0, -50%);
}
.gnav ul > .nav_tel .telFrame .txt {
  text-align: left;
  font-size: 0.5em;
}

.gnav ul > li > a {
  display: block;
  position: relative;
  width: 100%;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .gnav ul > li > a {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 100%;
  }
}
.gnav ul > li > a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 1em;
  opacity: 0;
  transition: all .25s ease-out;
  transform: scale(0, 1);
}
.gnav ul > li > a:hover {
  opacity: 1;
}
.gnav ul > li > a:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .pg_lower .gnav {
    background: #fff;
  }
  .pg_lower .gnav ul > li > a {
    color: #420068;
  }
  .pg_lower .gnav ul > .nav_tel .telFrame {
    position: relative;
    display: block;
    height: 100%;
    padding-left: 3.1875em;
    padding-right: 1.6em;
    background: #420068;
    color: #fff;
  }
  .pg_lower .gnav ul > .nav_tel .telFrame:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0.75em;
    width: 2.5625em;
    height: 2.875em;
    background: url(../images/ico_tel_xl.png) no-repeat 0 0;
    background-size: contain;
    transform: translate(0, -50%);
  }
  .pg_lower .gnav ul > .nav_tel .telFrame .tel {
    padding: 0;
    color: #fff;
    font-size: 1.875em;
  }
  .pg_lower .gnav ul > .nav_tel .telFrame .tel:before {
    display: none;
  }
  .pg_lower .gnav ul > .nav_tel .telFrame .txt {
    display: block;
    font-size: 0.875em;
    max-width: 16.6em;
    text-align: right;
  }
}
.container {
  position: relative;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  max-width: 1000px;
  width: auto;
}
.container.wide {
  max-width: 1040px;
}

.container.visible {
  overflow: visible;
}

.container.full {
  max-width: 100%;
}

.container.noPadding {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 992px) {
  .container.narrow {
    max-width: 1220px;
  }
}
.content {
  position: relative;
}

.pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 90;
  position: fixed;
  bottom: 20px;
  border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}

.pageTop a {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  padding: 65px 0 0;
  height: 0;
  outline: none;
  text-align: center;
  text-decoration: none;
}

.pageTop a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 6.5px auto 0;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  transform: rotate(-45deg) translate(-50%, -50%);
}

.pageTop:hover {
  opacity: .7;
}

footer {
  background: #420068;
  color: #fff;
  text-align: center;
}
footer .copyright {
  padding: .5em;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    font-size: 10px;
  }
}

.section {
  overflow: hidden;
  /* padding: 5.2083333333% 0; */
  padding: 50px 0 70px;
}

.section.visible {
  overflow: visible;
}

.ttl {
  position: relative;
  margin: 1.35em auto 2em;
  line-height: 1.3;
  font-weight: bold;
  font-size: 1.875em;
  letter-spacing: 0.064em;
  text-align: center;
}

.ttl.text-left {
  text-align: left;
}

.lead {
  font-size: 1.5em;
}

.btn {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  height: auto;
  font-size: 1.5em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: .65em 1em;
  max-width: 6.375em;
  background: #420068;
  border-radius: 0.25em;
  line-height: 1.3;
  letter-spacing: .04em;
  z-index: 1;
}

.btn:link, .btn:visited, .btn:hover {
  text-decoration: none;
  color: #fff;
}

.btn.lft {
  margin-left: 0;
  margin-right: 0;
}

span.btn {
  padding: 0;
  transition: opacity .3s ease-out;
}
span.btn > input[type="button"],
span.btn > button {
  display: block;
  background: none;
  border: 0;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  height: auto;
  font-size: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: .65em 1em;
  width: 100%;
  background: #420068;
  border-radius: 0.25em;
  line-height: 1.3;
  letter-spacing: .04em;
  cursor: pointer;
  z-index: 1;
}
span.btn:hover {
  opacity: .7;
}

/* ------------------------------
  VISUAL SECTION STYLES
  ------------------------------ */
.visualSection {
  position: relative;
}
.visualSection .title {
  font-size: 1em;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.visualSection .title .txt_top, .visualSection .title .txt_btm {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.visualSection .title .txt_top {
  background: #420068;
  font-size: 1.5em;
  padding: .7em 0;
}
.visualSection .title .txt_btm {
  height: 1.75em;
  line-height: 1.75em;
  background: #ff4949;
  font-size: 2.5em;
}
.visualSection .title:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 43em;
  top: 50%;
  height: 89.87%;
  background: url(../images/ico_catch_l.png) no-repeat 0 center, url(../images/ico_catch_r.png) no-repeat right center;
  background-size: contain , contain;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media only screen and (max-width: 1279px) {
  .visualSection .title {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .visualSection .title {
    font-size: 1em;
  }
  .visualSection .title .txt_top {
    font-size: 0.8571428571em;
    line-height: 1.8;
  }
  .visualSection .title .txt_btm {
    height: 1.75em;
    line-height: 1.75em;
    font-size: 1.4285714286em;
  }
  .visualSection .title:before {
    width: 100%;
    max-width: 27em;
  }
}

/* ------------------------------
  MERIT SECTION STYLES
  ------------------------------ */
.meritSection .meritFrame {
  margin: 0 auto 3.125em;
}
.meritSection .meritFrame:last-child {
  margin-bottom: 0;
}
.meritSection .meritFrame .title {
  position: relative;
  margin: 0 auto 1em;
  padding: 0 0 0 3.3333333333em;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.025em;
  color: #420068;
}
.meritSection .meritFrame .title .ico {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 3em;
  height: 0;
  padding: 2.5em 0 0;
  overflow: hidden;
  background: url(../images/ico_merit.png) no-repeat 0 0;
  background-size: 100% auto;
  transform: translateY(-50%);
}
.meritSection .meritFrame:nth-of-type(2) .title .ico {
  background-position-y: -2.5em;
}
.meritSection .meritFrame:nth-of-type(3) .title .ico {
  background-position-y: -5em;
}
@media screen and (min-width: 768px) {
  .meritSection .meritFrame .img {
    width: 28.7234042553%;
  }
  .meritSection .meritFrame .txt {
    width: 71.2765957447%;
    padding-left: 2.5em;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .meritSection .meritFrame .txt p {
    letter-spacing: -.016em;
  }
}

@media screen and (max-width: 767px) {
  .meritSection .meritFrame {
    position: relative;
    padding-top: 3em;
  }
  .meritSection .meritFrame .title {
    position: absolute;
    top: 0;
    font-size: 1.0714285714em;
  }
  .meritSection .meritFrame .title .ico {
    width: 2.4em;
    padding: 2em 0 0;
  }
  .meritSection .meritFrame:nth-of-type(2) .title .ico {
    background-position-y: -2em;
  }
  .meritSection .meritFrame:nth-of-type(3) .title .ico {
    background-position-y: -4em;
  }
  .meritSection .meritFrame .txt {
    margin: 15px 0 0;
  }
  .meritSection .meritFrame .img img {
    display: block;
    margin: 0 auto;
    max-width: 244px;
  }
}

.linkFrame {
  margin: 4.0625em auto 0;
}
.linkFrame .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 16px;
  padding: 1em;
  border-radius: 5px;
  border: 0.625em solid #c6c9d3;
  text-decoration: none;
  width: calc(33.33% - 8px);
}
.linkFrame .box .head {
  display: flex;
  align-items: center;
  align-content: center;
  min-height: 3em;
  margin: 0 0 1em;
  color: #420068;
  font-size: 1.875em;
  font-weight: bold;
  line-height: 1.6;
  transition: color .25s ease-out;
}
.linkFrame .box .head.condensed {
  text-indent: -0.03em;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .linkFrame .box .head {
    font-size: 1.475em;
  }
}
.linkFrame .box .txt {
  font-size: 1.125em;
}
.linkFrame .box .link {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.linkFrame .box .link.condensed {
  letter-spacing: -.007em;
}
.linkFrame .box:hover {
  background: #ff4949;
  border-color: #f3f3f3;
  color: #fff;
}
.linkFrame .box:hover .head {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .linkFrame {
    margin: 35px auto 0;
  }
  .linkFrame .box {
    margin: 0 0 6px;
    padding: 8px;
    width: calc(50% - 3px);
    min-height: 11.4285714286em;
    border-width: 5px;
    border-radius: 2.5px;
  }
  .linkFrame .box .head {
    font-size: 15px;
    font-size: 1.5rem;
    min-height: 2.4em;
    margin: 0 0 .25em;
    letter-spacing: -0.01em;
  }
  .linkFrame .box .txt {
    font-size: 1em;
    flex-grow: 1;
  }
}

/* ------------------------------
  CONTACT SECTION STYLES
  ------------------------------ */
.contactSection {
  padding: 4.375em 0 1.125em;
  background: url(../images/bg_contact.jpg) no-repeat center 0;
  background-size: cover;
  overflow: hidden;
}
.contactSection .contactBox {
  padding: 1.2em 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  float: right;
  width: 100%;
  max-width: 480px;
}
.contactSection .contactBox .title {
  font-size: 1.5em;
  font-weight: bold;
}
.contactSection .contactBox .telFrame .time {
  display: block;
  margin: .5em 0;
  font-size: 0.5833333333em;
  font-weight: normal;
}
.contactSection .contactBox .tel {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding-left: .9em;
  font-size: 3em;
  line-height: 1;
}
.contactSection .contactBox .tel:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -3px 0 0;
  width: 0.7708333333em;
  height: 0.9583333333em;
  background: url(../images/ico_tel_l.png) no-repeat 0 0;
  background-size: contain;
  transform: translate(0, -50%);
}
.contactSection .contactBox .btn_mail {
  display: block;
  margin: .6em auto 0;
  padding: .7em .2em;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 7px;
  max-width: 19.0555555556em;
  line-height: 1.3;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .contactSection {
    padding: 8px 0 !important;
    background: url(../images/bg_contact_sp.jpg) no-repeat center 0;
    background-size: cover;
  }
  .contactSection .container {
    padding: 0 5px;
  }
  .contactSection .contactBox {
    float: none;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    max-width: initial;
  }
  .contactSection .contactBox .title {
    font-size: 1.0714285714em;
  }
  .contactSection .contactBox .telFrame .time {
    font-size: 0.6em;
  }
  .contactSection .contactBox .tel {
    font-size: 2.2142857143em;
  }
  .contactSection .contactBox .btn_mail {
    padding: .5em .2em;
    font-size: 0.8571428571em;
  }
}

/* ------------------------------
  PROCEDURE SECTION STYLES
  ------------------------------ */
.procedureSection .container {
  max-width: 1050px;
}
.procedureSection .ttl + p {
  margin: 0 auto;
  max-width: 920px;
}
.procedureSection .img {
  margin: 6.25em auto 4.6875em;
}
@media screen and (max-width: 767px) {
  .procedureSection .img {
    margin: 30px auto;
  }
}
.procedureSection .guaranteeFrame {
  padding: 1.45em 2em 1.25em;
  border-radius: 0.6875em;
  background-color: #f8f8f8;
  border: 5px solid #f3f3f3;
}
.procedureSection .guaranteeFrame .head {
  margin: 0 auto 1em;
  text-align: center;
}
.procedureSection .guaranteeFrame .head img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .procedureSection .guaranteeFrame {
    border-radius: 0;
    margin: 0 -10px;
    padding: 15px;
  }
}

/* ------------------------------
  SPECIFIED-SKILLED-WORKER SECTION STYLES
  ------------------------------ */
@media screen and (max-width: 767px) {
  .specifiedSkilledWorkerSection img {
    display: block;
    margin: 0 auto 20px;
    max-width: 244px;
  }
}

/* ------------------------------
  FAQ SECTION STYLES
  ------------------------------ */
.faqSection .faqFrame + .faqFrame {
  margin-top: 1.5em;
}
.faqSection .faqFrame .txt_q,
.faqSection .faqFrame .txt_a {
  position: relative;
  padding: 1.5em 0;
  padding-left: 60px;
}
.faqSection .faqFrame .txt_q:before,
.faqSection .faqFrame .txt_a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 40px;
  height: 33px;
  line-height: 33px;
  border-radius: 3px;
  font-size: 1em;
  text-align: center;
}
.faqSection .faqFrame .txt_q {
  font-size: 1.125em;
  border-bottom: 1px dashed #e5e5e5;
}
.faqSection .faqFrame .txt_q:before {
  content: "Q";
  top: 1.4em;
  background: #420068;
  color: #fff;
  font-size: 0.8888888889em;
}
.faqSection .faqFrame .txt_a:before {
  content: "A";
  background: #ffd954;
}
.faqSection.company .faqFrame .txt_a:before {
  background: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .faqSection .faqFrame + .faqFrame {
    margin-top: 15px;
  }
  .faqSection .faqFrame .txt_q,
  .faqSection .faqFrame .txt_a {
    border: 0;
    padding-left: 3.5714285714em;
    font-size: 1em;
  }
  .faqSection .faqFrame .txt_q:before,
  .faqSection .faqFrame .txt_a:before {
    top: 1.2em;
    width: 40px;
    height: 33px;
    line-height: 33px;
    font-size: 1.0714285714em;
    font-weight: bold;
    border-radius: 3px;
  }
}

/* ------------------------------
  ABOUT SECTION STYLES
  ------------------------------ */
.aboutSection {
  margin-top: 3.125em;
  padding: 20px;
  background: #f2f2f2;
}
.aboutSection .aboutFrame {
  padding: 0 20px 20px;
  border: 0.625em solid #a48c61;
  background: #fcfcfc;
}
.aboutSection .tblFrame {
  max-width: 890px;
  margin: 3em auto 0;
}
.aboutSection .tblFrame .tr {
  border-bottom: 2px solid #f0f0f0;
}
.aboutSection .tblFrame .tr:last-child {
  border-bottom: 0;
}
.aboutSection .tblFrame .th, .aboutSection .tblFrame .td {
  padding: 1.35em;
}
.aboutSection .tblFrame .td .dl dt {
  width: 42%;
}
.aboutSection .tblFrame .td .dl dd {
  margin: 0;
  padding: 0;
  width: 58%;
}
@media screen and (min-width: 992px) {
  .aboutSection .tblFrame .tr {
    display: flex;
  }
  .aboutSection .tblFrame .th {
    width: 10.625em;
  }
  .aboutSection .tblFrame .td {
    width: calc(100% - 10.625em);
  }
}
@media screen and (max-width: 991px) {
  .aboutSection {
    padding: 10px !important;
  }
  .aboutSection .aboutFrame {
    padding: 0 0 15px;
    border-width: 5px;
  }
  .aboutSection .aboutFrame .ttl {
    margin: 2em auto 0;
  }
  .aboutSection .tblFrame {
    margin: 1.5em auto 0;
    text-align: center;
  }
  .aboutSection .tblFrame .tr {
    border: 0;
  }
  .aboutSection .tblFrame .th, .aboutSection .tblFrame .td {
    padding: 1em;
  }
  .aboutSection .tblFrame .th {
    font-weight: bold;
    padding-bottom: 0;
  }
  .aboutSection .tblFrame .td .dl {
    display: block;
    letter-spacing: -0.01em;
  }
  .aboutSection .tblFrame .td .dl dt, .aboutSection .tblFrame .td .dl dd {
    width: auto;
  }
  .aboutSection .tblFrame .td .dl dd + dt {
    margin-top: 1em;
  }
}

/* ------------------------------
 TOP PAGE STYLES
  ------------------------------ */
@media screen and (max-width: 767px) {
  #merit, #faq {
    padding-top: 74px;
    margin-top: -44px;
  }
}
/* ------------------------------
  LOWER PAGE STYLES
  ------------------------------ */
.pgTitle {
  font-size: 2.25em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pgTitle {
    font-size: 1.125em;
  }
}

/* ===== CONTACT ===== */
/* ---------------------------
  CONTACT PAGE STYLES
  ----------------------------*/
.formTbl {
  margin: 30px auto 3em;
  width: 100%;
  border-top: 0;
  font-size: 14px;
}

.formTbl th,
.formTbl td {
  padding: 15px 30px;
}

.formTbl th {
  position: relative;
  padding: 20px 60px 15px 0;
  width: 14em;
  text-align: left;
  vertical-align: top;
}

.formTbl input[type="text"],
.formTbl input[type="tel"],
.formTbl input[type="email"],
.formTbl input[type="date"],
.formTbl select,
.formTbl textarea {
  padding: 4px 10px;
  border-color: #ccc;
  border-radius: 5px;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.formTbl .hissu {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 18px;
  padding: .5em 0;
  width: 3.875em;
  line-height: 1;
  font-size: 1em;
  font-weight: normal;
  color: #fff;
  border-radius: 4px;
  background: #ff0000;
  font-family: Meiryo, メイリオ, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',arial, helvetica, sans-serif;
  text-align: center;
}

.formTbl td {
  vertical-align: middle;
}
.formTbl td .colWrap {
  margin: 0 0 1em;
}
.formTbl td .colWrap label + label {
  margin-left: 1em !important;
}
.formTbl td .colWrap input[type="text"] {
  max-width: 7em;
  width: auto;
}
.formTbl td .colWrap input[type="text"].zip {
  max-width: calc(90% - 1.5em);
}
.formTbl td #address {
  margin-left: 1.5em;
  max-width: calc(90% - 1.5em);
}
.formTbl td #seminarDate {
  border: 1px solid #ccc;
}
.formTbl td #seminarDate:disabled {
  box-shadow: none;
  color: #999;
}

tr.disabled .hissu {
  display: none;
}

form#mailformpro label.mfp_not_checked {
  padding: 0 !important;
  border: 0 !important;
}

.btnFrame {
  margin: 5.625em auto 1em;
}

.btnFrame .btn {
  max-width: 180px;
}
.btnFrame .btn > input[type="button"], .btnFrame .btn > button {
  padding: .45em;
}
.btnFrame .btn > input[type="button"]:hover, .btnFrame .btn > button:hover {
  background: none;
  box-shadow: none;
}

/* *************************************************************
   LESS THAN width 767px
**************************************************************** */
@media print, screen and (max-width: 767px) {
  .contactFormSection .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .formTbl {
    margin: 20px auto 10px;
    font-size: 1em;
  }

  .formTbl th,
  .formTbl td {
    padding: 0  !important;
  }

  .formTbl td {
    padding: 10px 0 20px !important;
  }

  .formTbl .hissu {
    padding: 4px;
    font-size: .9em;
    top: 0;
    position: relative;
    right: auto;
    margin-left: 1em;
    padding: 3px 3px 1px;
    width: 3em;
  }

  .formTbl input[type="text"],
  .formTbl input[type="tel"],
  .formTbl input[type="email"],
  .formTbl input[type="date"],
  .formTbl select,
  .formTbl textarea {
    width: 100%;
  }

  .btnFrame .btn > input[type="button"],
  .btnFrame .btn > button {
    padding: 15px;
  }
}
/* ===== end - CONTACT ===== */
/* Less than 991px */
@media only screen and (max-width: 991px) {
  body {
    font-size: 15px;
    font-size: 1.5rem;
  }

  /* ===== MODULES_TAB ===== */
  img {
    max-width: 100%;
    height: auto;
  }

  .pc {
    display: none;
  }

  .tab, .tab.sp {
    display: block !important;
  }

  .tab.tab-colWrap, .tab.sp.tab-colWrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  input[type="text"].tab-max,
  input[type="tel"].tab-max,
  input[type="email"].tab-max,
  select.tab-max,
  textarea.tab-max {
    width: 100%;
  }

  /* ===== end - MODULES_TAB ===== */
  .pc {
    display: none !important;
  }

  .pc.tab {
    display: block !important;
  }

  .pageTop {
    width: 65px;
    height: 65px;
  }

  .pageTop a {
    width: 65px;
    padding-top: 65px;
  }

  .container {
    padding-right: 25px;
    padding-left: 25px;
  }

  .ttl {
    font-size: 1.86em;
  }
}
/* Less than 767px */
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  /* ===== MODULES_SP ===== */
  img {
    max-width: 100%;
    height: auto;
  }

  .pc, .tab, .pc.tab {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sp-img-auto {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
  }

  table:not(.sp-table) th,
  table:not(.sp-table) td,
  table.tab-table:not(.sp-table) th,
  table.tab-table:not(.sp-table) td {
    display: block;
    width: 100% !important;
    border-bottom: 0;
  }

  table:not(.sp-table) th {
    font-weight: bold;
    border-bottom: 0;
  }

  table:not(.sp-table) td {
    padding: 10px 1em 25px;
    border-top: 0;
  }

  table.sp-table th,
  table.sp-table td {
    padding: 8px 8px 4px;
    font-weight: normal;
  }

  input[type="text"].sp-max,
  input[type="tel"].sp-max,
  input[type="email"].sp-max,
  select.sp-max,
  textarea.sp-max {
    width: 100%;
  }

  .tel_link {
    pointer-events: initial;
  }

  .sp-block {
    display: block !important;
  }

  .sp-in-block {
    display: inline-block !important;
  }

  .sp-flex {
    display: flex !important;
  }

  .sp-inline {
    display: inline !important;
  }

  .sp-none {
    display: none !important;
  }

  .sp-text-center {
    text-align: center !important;
  }

  .sp-text-left {
    text-align: left !important;
  }

  .sp-text-right {
    text-align: right !important;
  }

  /* ===== end - MODULES_SP ===== */
  .gnav {
    display: block;
    position: fixed;
    overflow: hidden;
    top: 44px;
    left: 0;
    width: 100%;
    height: calc(100vh - 44px);
    max-height: 0;
    overflow-y: auto;
    background: #420068;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 100;
  }

  .gnav nav {
    display: block;
    padding: 50px 15px;
    width: 100%;
    height: calc(100vh - 44px);
    overflow-y: auto;
  }

  .gnav .navi {
    display: block;
    height: auto;
  }

  .gnav .navi > li {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
  }

  .gnav .navi > li > a {
    position: relative;
    width: auto;
    padding: .8em 0;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
  }
  .gnav .navi > li > a:before {
    display: none;
  }

  .gnav .navi > li:last-child > a {
    border-bottom: 0;
  }

  .gnav .navi > .nav_tel {
    padding: 15px 0;
    width: auto;
    height: auto;
    text-align: center;
  }
  .gnav .navi > .nav_tel .telFrame {
    display: block;
    margin: 5px auto 0;
    padding: 10px 5px 7px;
    border-radius: 3px;
  }
  .gnav .navi > .nav_tel .telFrame .tel {
    font-size: 1.4em;
  }
  .gnav .navi > .nav_tel .telFrame .txt {
    display: block;
    margin: 5px auto 0;
    text-align: center;
  }

  .gnav.open {
    max-height: calc(100vh - 50px);
  }

  .menuBtn {
    position: fixed;
    top: 0;
    right: 0;
    width: 45px;
    height: 44px;
    background: transparent;
    text-align: center;
    cursor: pointer;
    pointer-events: all;
    border-radius: 50%;
    z-index: 200;
    /* font-weight: normal; */
  }

  .menuBtn div {
    position: relative;
    margin: 0 auto;
    height: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .75s ease-out;
    transition: all .75s ease-out;
  }

  .menuBtn div:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin-top: -1px;
    margin-left: -13px;
    width: 26px;
    height: 2px;
    border-radius: 0px;
    background: #420068;
    opacity: 1;
    -webkit-transition: .35s ease-in-out;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }

  .menuBtn span {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 18px;
    color: #fff;
    font-size: 1.1rem;
    font-family: Helvetica, Arial, sans-serif;
    letter-spacing: .5px;
    line-height: 80px;
    overflow: hidden;
  }

  .menuBtn span:before {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    margin-left: -13px;
    width: 26px;
    height: 2px;
    border-radius: 0px;
    background: #420068;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    top: 0;
  }

  .menuBtn span:after {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    margin-left: -13px;
    width: 26px;
    height: 2px;
    border-radius: 0px;
    background: #420068;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    bottom: 0;
  }

  .pageTop {
    display: none !important;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.sp-full {
    padding-left: 0;
    padding-right: 0;
  }

  .sp-container {
    width: auto !important;
    max-width: initial;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content {
    margin-top: 50px;
  }

  .section {
    padding: 30px 0;
  }

  .section.anchrSec {
    padding-top: 60px;
    margin-top: -60px;
  }

  .main > .section:first-of-type {
    padding-top: 15px;
  }

  .ttl {
    margin: 1em -10px 1.5em;
    font-size: 1.0714285714em;
  }

  .btn {
    padding: 1.075em 1em;
    width: 100%;
    max-width: 240px;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .btn.lft {
    margin-left: auto;
    margin-right: auto;
  }

  .btn.anim {
    padding: 0;
  }

  .btn.anim > span {
    position: relative;
    display: block;
    height: 36px;
    line-height: 36px;
  }

  .btn.anim:before {
    border-bottom-width: 36px;
  }

  .btn.anim:after {
    border-top-width: 36px;
  }

  .btnFrame.multi .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .btnFrame.multi .btn + .btn {
    margin: 20px auto 0;
  }
}
/* index幅374px以下から
------------------------------------------------------------*/
@media only screen and (max-width: 374px) {
  .sp2, .sp.sp2 {
    display: block !important;
  }

  .ttl {
    font-size: 17px;
  }
}
