@charset "utf-8";

.noScroll {
  position: fixed;
  width: 100%;
}

.shadowBox {
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 5px 1px;
  margin: 6px auto;
}

.bttn a {
  margin: auto;
}

.indentTxt {
  text-indent: -1em;
  padding-left: 1em;
}

/* font-size */
.fsBBBBB {
  font-size: 2.1em;
}

.fsBBBB {
  font-size: 1.8em;
}

.fsBBB {
  font-size: 1.5em;
}

.fsBB {
  font-size: 1.3em;
}

.fsB {
  font-size: 1.2em;
}

.fsS {
  font-size: 0.9em;
}

.fsSS {
  font-size: 0.8em;
}

.fsSSS {
  font-size: 0.7em;
}

/* font-color */
.fcRed {
  color: #EE5252;
}

.bttn button {
  margin: auto;
}

.indentTxt {
  text-indent: -1em;
  padding-left: 1em;
}

/* font-size */
.fsBBBBB {
  font-size: 2.1em;
}

.fsBBBB {
  font-size: 1.8em;
}

.fsBBB {
  font-size: 1.5em;
}

.fsBB {
  font-size: 1.3em;
}

.fsB {
  font-size: 1.2em;
}

.fsS {
  font-size: 0.9em;
}

.fsSS {
  font-size: 0.8em;
}

.fsSSS {
  font-size: 0.7em;
}

/* font-color */
.fcRed {
  color: #EE5252;
}

h1,
h2,
h3,
main p {
  line-height: 1.5;
}

p.txt {
  margin-top: 10px;
}

.lead {
  margin-top: 30px;
}

.fee {
  text-align: center;
  margin-top: 40px;
}

.fee em {
  font-size: 3.3rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width:768px) {

  .lead {
    margin-top: 20px;
  }

  .fee {
    margin-top: 20px;
  }

  .fee em {
    font-size: 1.8rem;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ header */

#header {
  border-bottom: 1px solid #E2E2E2;
  position: relative;
}

#header .topBlock {
  display: table;
  width: 1000px;
  margin: auto;
  padding: 20px 20px 10px;
}

@media screen and (max-width:768px) {

  #header .topBlock {
    width: 100%;
    padding: 0 20px;
    height: 65px;
  }

}

/* --- max-width:768px */

/* ===================== logoArea */

#header .topBlock .logoArea {
  display: table-cell;
  vertical-align: middle;
}

#header .topBlock .logoArea .logoBox {
  display: table;
}

#header .topBlock .logoArea .logoBox>li {
  display: table-cell;
  vertical-align: middle;
}

#header .topBlock .logoArea .logoBox .logo {
  display: block;
  width: 170px;
}

#header .topBlock .logoArea .logoBox .name,
#header .topBlock .logoArea .logoBox .ttl {
  margin-left: 15px;
}

@media screen and (max-width:768px) {

  #header .topBlock .logoArea {
    padding-right: 10px;
  }

  #header .topBlock .logoArea .logoBox .logo {
    width: 125px;
  }

  #header .topBlock .logoArea .logoBox .name,
  #header .topBlock .logoArea .logoBox .ttl {
    margin-left: 10px;
    font-size: 1.2rem;
  }

}

/* --- max-width:768px */

/* ===================== btnArea */

#header .topBlock .btnArea {
  display: table-cell;
  vertical-align: middle;
}

#header .topBlock .btnArea .btnBox {
  display: table;
  margin: 0 0 0 auto;
}

#header .topBlock .btnArea .btnBox li {
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
}

#header .topBlock .btnArea .btn {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 18px;
}

#header .topBlock .btnArea .btn.ucaro {
  border: 1px solid #52A0EE;
}

#header .topBlock .btnArea .btn.register {
  background: #1B5591;
}

#header .topBlock .btnArea .btn.login {
  background: #52A0EE;
}

#header .topBlock .btnArea .btn.logout {
  border: 1px solid #52A0EE;
}

#header .topBlock .btnArea .btn span {
  font-size: 1.4rem;
  white-space: nowrap;
}

#header .topBlock .btnArea .btn.ucaro span {
  color: #52A0EE;
}

#header .topBlock .btnArea .btn.register span {
  color: #fff;
}

#header .topBlock .btnArea .btn.login span {
  color: #fff;
}

#header .topBlock .btnArea .btn.logout span {
  color: #52A0EE;
}

#header .topBlock .btnArea .bttn {
  display: none;
}

@media screen and (max-width:768px) {

  #header .topBlock .btnArea .btnBox {
    display: none;
  }

  #header .topBlock .btnArea .bttn {
    display: block;
    text-align: right;
  }

}

/* --- max-width:768px */

/* -------- btnGmenu */

#btnGmenu,
#btnGmenu span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

#btnGmenu {
  position: relative;
  width: 30px;
  height: 20px;
}

#btnGmenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #52A0EE;
  border-radius: 2px;
}

#btnGmenu span:nth-of-type(1) {
  top: 0;
}

#btnGmenu span:nth-of-type(2) {
  top: 9px;
}

#btnGmenu span:nth-of-type(3) {
  bottom: 0;
}

#btnGmenu span:nth-of-type(1) {
  animation: menuBar01 .75s forwards;
}

@keyframes menuBar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }

  50% {
    transform: translateY(10px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

#btnGmenu span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}

#btnGmenu span:nth-of-type(3) {
  animation: menuBar02 .75s forwards;
}

@keyframes menuBar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }

  50% {
    transform: translateY(-10px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.isOpened #btnGmenu span:nth-of-type(1) {
  animation: isActive_menuBar01 .75s forwards;
}

@keyframes isActive_menuBar01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(10px) rotate(0);
  }

  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

.isOpened #btnGmenu span:nth-of-type(2) {
  opacity: 0;
}

.isOpened #btnGmenu span:nth-of-type(3) {
  animation: isActive_menuBar03 .75s forwards;
}

@keyframes isActive_menuBar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(0);
  }

  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ===================== menuBlock */

#header .menuBlock {
  position: relative;
  width: 1000px;
  padding: 0 20px 10px;
  margin: auto;
}

#header .menuBlock .menuBox {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  flex: auto;
}

#header .menuBlock .menuBox a {
  display: block;
  padding: 10px 10px 10px 40px;
  position: relative;
}

#header .menuBlock .menuBox li a:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 8px;
  background-size: contain !important;
}

#header .menuBlock .menuBox li a.info:before {
  background: url(/images/img/menu_info.png) no-repeat center;
  margin-top: -9px;
  width: 20px;
  height: 18px;
}

#header .menuBlock .menuBox li a.flow:before {
  background: url(/images/img/menu_flow.png) no-repeat center;
  margin-top: -9px;
  width: 20px;
  height: 19px;
}

#header .menuBlock .menuBox li a.faq:before {
  background: url(/images/img/menu_faq.png) no-repeat center;
  margin-top: -11px;
  width: 20px;
  height: 20px;
}

#header .menuBlock .menuBox li a.ucaro:before {
  background: url(/images/img/menu_ucaro.png) no-repeat center;
  margin-top: -11px;
  width: 20px;
  height: 20px;
}

#header .menuBlock .menuBox li a.mail:before {
  background: url(/images/img/menu_mail.png) no-repeat center;
  margin-top: -8px;
  width: 21px;
  height: 17px;
}

#header .menuBlock .menuBox li a.index:before {
  background: url(/images/img/menu_index.png) no-repeat center;
  margin-top: -7px;
  width: 18px;
  height: 15px;
}

#header .menuBlock .menuBox li a.terms:before {
  background: url(/images/img/menu_terms.png) no-repeat center;
  margin-top: -11px;
  width: 18px;
  height: 23px;
}

#header .menuBlock .menuBox li a.login:before {
  background: url(/images/img/menu_login.png) no-repeat center;
  margin-top: -11px;
  width: 19px;
  height: 22px;
}

@media screen and (max-width:768px) {

  #header .menuBlock {
    position: absolute;
    width: 100%;
    top: auto;
    left: 0;
    height: calc(100vh - 100%);
    z-index: 1000;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    left: 120%;
    -ms-transition: opacity 500ms, left 500ms, visibility 500ms;
    transition: opacity 500ms, left 500ms, visibility 500ms;
  }

  #header.isOpened .menuBlock {
    visibility: visible;
    opacity: 1 !important;
    left: 0 !important;
  }

  #header .menuBlock .menuBg {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
  }

  #header .menuBlock .menuBox {
    display: block;
    padding: 20px 5vw 100px;
    background: #fff;
  }

  #header .menuBlock .menuBox li {
    display: block;
    visibility: hidden;
    opacity: 0;
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }

  #header.isOpened .menuBlock .menuBox li {
    visibility: visible !important;
    opacity: 1 !important;
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }

  #header .menuBlock .menuBox li:nth-child(1) {
    transition: all 1000ms 0.1s;
  }

  #header .menuBlock .menuBox li:nth-child(2) {
    transition: all 1000ms 0.2s;
  }

  #header .menuBlock .menuBox li:nth-child(3) {
    transition: all 1000ms 0.3s;
  }

  #header .menuBlock .menuBox li:nth-child(4) {
    transition: all 1000ms 0.4s;
  }

  #header .menuBlock .menuBox li:nth-child(5) {
    transition: all 1000ms 0.5s;
  }

  #header .menuBlock .menuBox li:nth-child(6) {
    transition: all 1000ms 0.6s;
  }

  #header .menuBlock .menuBox li:nth-child(7) {
    transition: all 1000ms 0.7s;
  }

  #header .menuBlock .menuBox li:nth-child(8) {
    transition: all 1000ms 0.8s;
  }

  #header .menuBlock .menuBox li:nth-child(9) {
    transition: all 1000ms 0.9s;
  }

  #header .menuBlock .menuBox li:nth-child(10) {
    transition: all 1000ms 1.0s;
  }

  #header .menuBlock .menuBox li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 65px;
    border-bottom: 1px solid #ddd;
  }

  #header .menuBlock .menuBox li a:after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -5px;
    right: 10px;
    margin-left: -7px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #52A0EE;
    border-bottom: 2px solid #52A0EE;
    transform: rotateZ(-45deg);
  }

  #header .menuBlock .menuBox li a span {
    font-size: 1.4rem;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ main */

/* ===================== mvBlock */

#mvBlock p.img {
  width: 100%;
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width:768px) {

  #mvBlock p.img {
    height: auto;
    background-image: url(/images/img/dammy_mvsp.jpg);
    padding-top: 75%;
  }

}

/* --- max-width:768px */

/* ===================== btnTopBlock */

.btnTopBlock {
  padding: 40px 0;
}

.btnTopBlock .cap {
  text-align: center;
  display: none;
}

@media screen and (max-width:768px) {

  .btnTopBlock {
    padding: 30px 0;
  }

  .btnTopBlock .cap {
    text-align: center;
    display: block;
    margin-bottom: 15px;
  }

  .btnTopBlock .cap span {
    position: relative;
    padding: 0 15px;
    font-size: 1.6rem;
  }

  .btnTopBlock .cap span:before {
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 7px);
    left: 0;
    width: 0;
    height: 15px;
    border-right: 2px dotted #777;
    background-size: contain;
    transform: rotateZ(-25deg);
  }

  .btnTopBlock .cap span:after {
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 7px);
    right: 0;
    width: 0;
    height: 15px;
    border-right: 2px dotted #777;
    background-size: contain;
    transform: rotateZ(25deg);
  }

}

/* --- max-width:768px */

/* ===================== ttlTopBlock */

#ttlTopBlock {
  background: #F7F7F7;
  padding: 65px 0;
}

#ttlTopBlock h1.ttl {
  font-size: 3.2rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

#ttlTopBlock h1:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  background-size: contain !important;
}

#ttlTopBlock h1.apply {
  padding-left: 77px;
}

#ttlTopBlock h1.apply:before {
  background: url(/images/img/icon_apply.png) no-repeat center;
  margin-top: -22px;
  width: 57px;
  height: 44px;
}

#ttlTopBlock h1.faq {
  padding-left: 76px;
}

#ttlTopBlock h1.faq:before {
  background: url(/images/img/icon_faq.png) no-repeat center;
  margin-top: -28px;
  width: 56px;
  height: 56px;
}

#ttlTopBlock h1.flow {
  padding-left: 70px;
}

#ttlTopBlock h1.flow:before {
  background: url(/images/img/icon_flow.png) no-repeat center;
  margin-top: -24px;
  width: 50px;
  height: 48px;
}

#ttlTopBlock h1.login {
  padding-left: 66px;
}

#ttlTopBlock h1.login:before {
  background: url(/images/img/icon_login.png) no-repeat center;
  margin-top: -27px;
  width: 46px;
  height: 54px;
}

#ttlTopBlock h1.register {
  padding-left: 72px;
}

#ttlTopBlock h1.register:before {
  background: url(/images/img/icon_register.png) no-repeat center;
  margin-top: -23px;
  width: 52px;
  height: 45px;
}


#header .menuBlock .menuBox li a.register:before {
  background: url(/images/img/icon_register.png) no-repeat center;
  margin-top: -11px;
  width: 19px;
  height: 22px;
}

#ttlTopBlock h1.terms {
  padding-left: 53px;
}

#ttlTopBlock h1.terms:before {
  background: url(/images/img/icon_terms.png) no-repeat center;
  margin-top: -23px;
  width: 33px;
  height: 45px;
}

#ttlTopBlock h1.school {
  padding-left: 65px;
}

#ttlTopBlock h1.school:before {
  background: url(/images/img/icon_school.png) no-repeat center;
  margin-top: -21px;
  width: 45px;
  height: 41px;
}

#ttlTopBlock h1.imgup {
  padding-left: 64px;
}

#ttlTopBlock h1.imgup:before {
  background: url(/images/img/icon_imgup.png) no-repeat center;
  margin-top: -22px;
  width: 44px;
  height: 44px;
}

@media screen and (max-width:768px) {

  #ttlTopBlock {
    padding: 50px 0;
  }

  #ttlTopBlock h1.ttl {
    font-size: 2.2rem;
  }

  /* spはpcの75%。padding-leftは、+15px */
  #ttlTopBlock h1.apply {
    padding-left: 58px;
  }

  #ttlTopBlock h1.apply:before {
    margin-top: -17px;
    width: 43px;
    height: 33px;
  }

  #ttlTopBlock h1.faq {
    padding-left: 57px;
  }

  #ttlTopBlock h1.faq:before {
    margin-top: -21px;
    width: 42px;
    height: 42px;
  }

  #ttlTopBlock h1.flow {
    padding-left: 52px;
  }

  #ttlTopBlock h1.flow:before {
    margin-top: -18px;
    width: 37px;
    height: 36px;
  }

  #ttlTopBlock h1.login {
    padding-left: 49px;
  }

  #ttlTopBlock h1.login:before {
    margin-top: -20px;
    width: 34px;
    height: 40px;
  }

  #ttlTopBlock h1.register {
    padding-left: 54px;
  }

  #ttlTopBlock h1.register:before {
    margin-top: -17px;
    width: 39px;
    height: 33px;
  }

  #ttlTopBlock h1.terms {
    padding-left: 40px;
  }

  #ttlTopBlock h1.terms:before {
    margin-top: -17px;
    width: 25px;
    height: 34px;
  }

  #ttlTopBlock h1.school {
    padding-left: 50px;
  }

  #ttlTopBlock h1.school:before {
    background: url(/images/img/icon_school.png) no-repeat center;
    margin-top: -16px;
    width: 34px;
    height: 31px;
  }

  #ttlTopBlock h1.imgup {
    padding-left: 53px;
  }

  #ttlTopBlock h1.imgup:before {
    background: url(/images/img/icon_imgup.png) no-repeat center;
    margin-top: -17px;
    width: 33px;
    height: 33px;
  }

}

/* --- max-width:768px */

/* ===================== stepBlock */

.stepBlock {
  margin: 50px 0;
}

.stepBlock ol {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.stepBlock ol li {
  width: 100%;
}

.stepBlock ol li .maru {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  position: relative;
}

.stepBlock ol li .maru:before {
  content: '';
  position: absolute;
  display: block;
  background: #ccc;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-size: contain;
}

.stepBlock ol li:first-child .maru:before {
  width: 50%;
  left: 50%;
}

.stepBlock ol li:last-child .maru:before {
  width: 50%;
}

.stepBlock ol li.isActive .maru:before {
  background: #52A0EE;
}

.stepBlock ol li.isDone .maru:before {
  background: #52A0EE;
}

.stepBlock ol .maru span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  position: relative;
}

/* UCSG_O_M-476 edit start */
.stepBlock ol .isActive .maru span {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  border-color: #52A0EE;
  background: #52A0EE;
}

.stepBlock ol .isDone .maru span {
  width: 20px;
  height: 20px;
  border-radius: 17px;
  border: 2px solid #52A0EE;
}

/* UCSG_O_M-476 edit end */

.stepBlock ol .txt {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 0;
}

.stepBlock ol .isActive .txt {
  color: #52A0EE;
  font-weight: bold;
}

@media screen and (max-width:768px) {

  .stepBlock {
    margin: 30px 0;
  }

  .stepBlock ol li .maru {
    height: 45px;
  }

  .stepBlock ol .maru span {
    width: 15px;
    height: 15px;
    border-radius: 8px;
  }

  .stepBlock ol .isActive .maru span {
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }

  .stepBlock ol .isDone .maru span {
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }

  .stepBlock ol .txt {
    text-align: center;
    font-size: 1.3rem;
  }

}

/* --- max-width:768px */

/* ===================== errBlock */

.errBlock {
  margin: 50px 0;
}

.errBlock .ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #EE5252;
  padding-top: 80px;
  position: relative;
}

.errBlock .ttl:before {
  content: '';
  position: absolute;
  display: block;
  background: url(/images/img/icon_err.png) no-repeat center;
  top: 0;
  left: calc(50% - 28px);
  width: 56px;
  height: 56px;
  background-size: contain;
}

.errBlock .txt {
  text-align: center;
  margin-top: 20px;
}

.errBlock .detailArea {
  background: #FDE5E5;
  padding: 20px;
  margin-top: 30px;
}

.errBlock .detailArea .txtBox li {
  color: #EE5252;
  margin-top: 10px;
}

.errBlock .detailArea .txtBox li:first-child {
  margin-top: 0
}

@media screen and (max-width:768px) {

  .errBlock {
    margin: 30px 0;
  }

  .errBlock .ttl {
    font-size: 2.0rem;
    padding-top: 60px;
  }

  .errBlock .ttl:before {
    left: calc(50% - 23px);
    width: 46px;
    height: 46px;
    background-size: contain;
  }

  .errBlock .txt {
    margin-top: 15px;
  }

  .errBlock .detailArea {
    margin-top: 20px;
  }

  .errBlock .detailArea .txtBox li {
    font-size: 1.4rem;
  }

}

/* --- max-width:768px */

/* UCSG_O_M-352 edit start */
/* ===================== warningBlock */

.warningBlock {
  margin: 50px 0;
}

.warningBlock .ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #EF7714;
  padding-top: 20px;
  position: relative;
}

.warningBlock .txt {
  text-align: center;
  margin-top: 20px;
}

.warningBlock .detailArea {
  background: #FFDDBB;
  padding: 20px;
  margin-top: 30px;
}

.warningBlock .detailArea .txtBox li {
  color: #ef7714;
  margin-top: 10px;
}

.warningBlock .detailArea .txtBox li:first-child {
  margin-top: 0
}

@media screen and (max-width:768px) {

  .warningBlock {
    margin: 30px 0;
  }

  .warningBlock .ttl {
    font-size: 2.0rem;
    padding-top: 60px;
  }

  .warningBlock .ttl:before {
    left: calc(50% - 23px);
    width: 46px;
    height: 46px;
    background-size: contain;
  }

  .warningBlock .txt {
    margin-top: 15px;
  }

  .warningBlock .detailArea {
    margin-top: 20px;
  }

  .warningBlock .detailArea .txtBox li {
    font-size: 1.4rem;
  }

}

/* --- max-width:768px */
/* UCSG_O_M-352 edit end */

/* ===================== ttlMainBlock */

#ttlMainBlock {
  margin: 50px 0;
}

@media screen and (max-width:768px) {

  #ttlMainBlock {
    margin: 30px 0;
  }

}

/* --- max-width:768px */

/* ===================== newsBlock */

.newsBlock {
  border-bottom: 1px solid #999;
}

.newsBlock .newsBox li.important {
  background: #f9bfbe;
  padding: 15px 0;
}

.newsBlock .newsBox li.news {
  background: #fde5e5;
  padding: 15px 0;
}

.newsBlock .newsBox li.important+li {
  padding-top: 20px;
}

.newsBlock .newsBox li+li.important {
  margin-top: 20px;
}

.newsBlock .newsBox li>div {
  display: table;
  width: 1000px;
  padding: 10px 20px;
  margin: auto;
}

.newsBlock .newsBox li p.info {
  display: table-cell;
  width: 180px;
}

.newsBlock .newsBox li p.info .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  width: 90px;
}

.newsBlock .newsBox li p.info .icon em {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 25px;
  border-radius: 3px;
}

.newsBlock .newsBox li.important p.info .icon em {
  background: #EE5252;
  color: #fff;
}

.newsBlock .newsBox li.news p.info .icon em {
  background: #fff;
  border: 1px solid #999;
}

.newsBlock .newsBox li p.info .date {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  width: 90px;
}

.newsBlock .newsBox li p.link {
  display: table-cell;
}

@media screen and (max-width:768px) {

  .newsBlock .newsBox li.important {
    background: #f9bfbe;
    padding: 10px 0;
  }

  .newsBlock .newsBox li.important+li {
    padding-top: 10px;
  }

  .newsBlock .newsBox li+li.important {
    margin-top: 10px;
  }

  .newsBlock .newsBox li>div {
    width: 100%;
    padding: 10px 5vw;
  }

  .newsBlock .newsBox li p.info {
    display: block;
    width: auto;
  }

  .newsBlock .newsBox li p.info .icon {
    font-size: 1.2rem;
    width: auto;
    padding-right: 10px;
  }

  .newsBlock .newsBox li p.info .date {
    font-size: 1.2rem;
    width: auto;
  }

  .newsBlock .newsBox li p.link {
    display: block;
    margin-top: 10px;
  }

}

/* --- max-width:768px */

/* ===================== iconBlock */

.iconBlock {
  margin-top: 140px;
  background: #F7F7F7;
  padding-top: 120px;
  padding-bottom: 50px;
  position: relative;
}

.iconBlock .iconArea {
  width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.iconBlock .iconArea:before {
  content: '';
  position: absolute;
  display: block;
  background: #F7F7F7;
  border-radius: 125px;
  top: -125px;
  left: calc(50% - 125px);
  width: 250px;
  height: 250px;
  background-size: contain;
}

.iconBlock .ttlIcon.apply {
  text-align: center;
  margin-top: -80px;
}

.iconBlock .ttlIcon.apply span {
  display: inline-block;
  position: relative;
  font-size: 3.0rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconBlock .ttlIcon.apply span:before {
  content: '';
  position: absolute;
  display: block;
  background: url(/images/img/icon_apply.png) no-repeat center;
  top: -60px;
  left: calc(50% - 25px);
  width: 57px;
  height: 44px;
  background-size: contain;
}

.iconBlock .frame960>.bttn {
  margin-top: 50px;
}

@media screen and (max-width:768px) {

  .iconBlock {
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .iconBlock .iconArea {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .iconBlock .iconArea:before {
    border-radius: 62px;
    top: -70px;
    left: calc(50% - 62px);
    width: 124px;
    height: 124px;
    background-size: contain;
  }

  .iconBlock .ttlIcon.apply {
    margin-top: -75px;
  }

  .iconBlock .ttlIcon.apply span {
    font-size: 2.0rem;
  }

  .iconBlock .ttlIcon.apply span:before {
    top: -45px;
    left: calc(50% - 21px);
    width: 42px;
    height: 33px;
    background-size: contain;
  }

  .iconBlock .frame960>.bttn {
    margin-top: 30px;
  }

}

/* --- max-width:768px */

/* ===================== iconBlock.top */

.iconBlock .section.top {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 3px;
  padding: 30px;
  position: relative;
  margin-top: 40px;
}

.iconBlock .section.top .ttl a {
  font-size: 2.6rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconBlock .section.top .blueHead {
  margin-top: 40px;
}

.iconBlock .section.top .blueHead:first-of-type {
  margin-top: 20px;
}

.iconBlock .section.top .box {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.iconBlock .section.top .bttn {
  margin-top: 30px;
}

@media screen and (max-width:768px) {

  .iconBlock .section.top {
    padding: 20px;
  }

  .iconBlock .section.top .ttl a {
    font-size: 1.8rem;
  }

  .iconBlock .section.top .blueHead {
    margin-top: 20px;
  }

  .iconBlock .section.top .blueHead:first-of-type {
    margin-top: 10px;
  }

  .iconBlock .section.top .box {
    padding: 10px 0;
  }

  .iconBlock .section.top .box .txt {
    margin-top: 5px;
  }

  .iconBlock .section.top .bttn {
    margin-top: 20px;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ form */

.formSelect.err select {
  background: #FDE5E5;
  border: 1px solid #EE5252;
  box-shadow: rgba(238, 82, 82, 0.3) 0 0 2px 1px;
}

.formText.err>input[type=text] {
  background: #FDE5E5;
  border: 1px solid #EE5252;
  box-shadow: rgba(238, 82, 82, 0.3) 0 0 2px 1px;
}

.formRadio.err>input[type=radio]+span {
  background: #FDE5E5;
  border: 1px solid #EE5252;
  box-shadow: rgba(238, 82, 82, 0.3) 0 0 2px 1px;
}

/* ===================== formSelect */

.formSelect {
  position: relative;
}

.formSelect select {
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 14px 50px 13px 14px !important;
}

.formSelect:after {
  content: '';
  position: absolute;
  display: block;
  top: calc(50% - 7px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotateZ(45deg);
  pointer-events: none;
}

@media screen and (max-width:768px) {

  .formSelect select {
    font-size: 1.4rem;
    width: 100%;
  }

}

/* --- max-width:768px */

/* ===================== formText */

.formText>input[type=text] {
  border: 1px solid #ccc;
  padding: 15px !important;
  font-size: 1.6rem;
}

.formText>input[type=text]:focus {
  border: 1px solid #52A0EE;
  box-shadow: rgba(107, 173, 239, 0.3) 0 0 2px 1px;
}

@media screen and (max-width:768px) {

  .formText>input[type=text] {
    font-size: 1.4rem;
  }

}

/* --- max-width:768px */

/* ===================== formRadio > input[type=radio] */

.formRadio>input[type=radio]+span {
  display: inline-block;
  position: relative;
  padding: 20px 20px 20px 45px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 1.6rem;
}

.formRadio>input[type=radio]+span:before {
  content: '';
  position: absolute;
  display: block;
  background: #fff;
  top: calc(50% - 10px);
  left: 13px;
  width: 15px;
  height: 15px;
  border: 2px solid #52A0EE;
  border-radius: 10px;
  pointer-events: none;
  background-size: contain;
}

.formRadio>input[type=radio]:checked+span {
  border-color: #52A0EE;
  box-shadow: rgba(107, 173, 239, 0.3) 0 0 2px 1px;
}

.formRadio>input[type=radio]:checked+span:before {
  content: '';
  position: absolute;
  display: block;
  background: #52A0EE;
  top: calc(50% - 10px);
  left: 13px;
  width: 15px;
  height: 15px;
  border: 2px solid #52A0EE;
  border-radius: 10px;
  pointer-events: none;
  background-size: contain;
}

.formRadio>input[type=radio]:checked+span:after {
  content: '';
  position: absolute;
  display: block;
  top: calc(50% - 8px);
  left: 15px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 10px;
  pointer-events: none;
  background-size: contain;
}

@media screen and (max-width:768px) {

  .formRadio>input[type=radio]+span {
    width: 100% !important;
    padding: 15px 15px 15px 45px;
    font-size: 1.4rem;
  }

}

/* --- max-width:768px */

/* ===================== formCheck */

.formCheck>input[type=checkbox]+span {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  padding-left: 30px;
}

.formCheck>input[type=checkbox]+span:before {
  content: '';
  position: absolute;
  display: block;
  background: #fff;
  top: calc(50% - 11px);
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  pointer-events: none;
  background-size: contain;
}

.formCheck>input[type=checkbox]:checked+span:after {
  content: '';
  position: absolute;
  display: block;
  top: calc(50% - 9px);
  left: 6px;
  border-bottom: 2px solid #52A0EE;
  border-right: 2px solid #52A0EE;
  width: 6px;
  height: 10px;
  background-size: contain;
  transform: rotateZ(45deg);
}

@media screen and (max-width:768px) {

  .formCheck>input[type=checkbox]+span {
    font-size: 1.4rem;
  }

}

/* --- max-width:768px */

/* ===================== formCheck2 */

.formCheck2>input[type=checkbox]+span {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  padding-left: 30px;
}

.formCheck2>input[type=checkbox]+span:before {
  content: '';
  position: absolute;
  display: block;
  background: #fff;
  top: calc(50% - 11px);
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #52A0EE;
  pointer-events: none;
  background-size: contain;
}

.formCheck2>input[type=checkbox]:checked+span:before {
  background: #52A0EE;
  border: 1px solid #52A0EE;
}

.formCheck2>input[type=checkbox]:checked+span:after {
  content: '';
  position: absolute;
  display: block;
  top: calc(50% - 9px);
  left: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 6px;
  height: 10px;
  background-size: contain;
  transform: rotateZ(45deg);
}

@media screen and (max-width:768px) {

  .formCheck2>input[type=checkbox]+span {
    font-size: 1.4rem;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ acc */

.btnAcc {
  display: block;
  position: relative;
  padding: 10px 35px 10px 0;
}

.btnAcc:before {
  content: '';
  position: absolute;
  display: block;
  background: #52A0EE;
  top: 50%;
  margin-top: -2px;
  right: 0;
  width: 20px;
  height: 2px;
  background-size: contain;
}

.btnAcc:after {
  content: '';
  position: absolute;
  display: block;
  background: #52A0EE;
  top: 50%;
  margin-top: -11px;
  right: 9px;
  width: 2px;
  height: 21px;
  background-size: contain;
}

.isOpened .btnAcc:after {
  display: none;
}

.accBox .accContents {
  position: relative;
  display: none;
}

@media screen and (max-width:768px) {

  .btnAcc {
    padding-right: 30px;
  }

}

/* --- max-width:768px */

/* ===================== faq */

.faq .faqQ {
  padding-left: 30px;
  position: relative;
  font-size: 1.8rem;
}

.faq .faqQ:before {
  content: '';
  position: absolute;
  display: block;
  background: url(/images/img/icon_faq_q.png) no-repeat center;
  top: 6px;
  left: 0;
  width: 17px;
  height: 33px;
  background-size: contain;
}

.faq .faqQ a {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.faq .faqA {
  padding-left: 30px;
  position: relative;
}

.faq .faqA:before {
  content: '';
  position: absolute;
  display: block;
  background: url(/images/img/icon_faq_a.png) no-repeat center;
  top: -5px;
  left: 0;
  width: 17px;
  height: 33px;
  background-size: contain;
}

@media screen and (max-width:768px) {

  .faq .faqQ {
    padding-left: 20px;
    font-size: 1.6rem;
  }

  .faq .faqQ:before {
    top: 10px;
    width: 14px;
    height: 20px;
  }

  .faq .faqA {
    padding-left: 20px;
  }

  .faq .faqA:before {
    top: 0;
    width: 14px;
    height: 20px;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ btnBlock */

.btnBlock {
  margin: 50px 0 0;
}

.btnBlock .bttn {
  margin-top: 40px;
}

.btnBlock .bttn:first-of-type {
  margin-top: 0;
}

.btnBlock .bttn a em {
  font-size: 1.8rem;
}

.btnBlock .txt {
  margin-top: 20px;
  font-size: 1.4rem;
  text-align: center;
}

.btnBlock .link {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width:768px) {

  .btnBlock {
    margin: 30px 0 0;
  }

  .btnBlock .bttn {
    margin-top: 30px;
  }

  .btnBlock .bttn a em {
    font-size: 1.6rem;
  }

  .btnBlock .txt {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .btnBlock .link {
    margin-top: 20px;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ footerNav */

#footerNav .btnBlock {
  text-align: right;
  padding: 100px 0 40px;
}

#footerNav .btnBlock .btnTop {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #52A0EE;
  border-radius: 30px;
  position: relative;
}

#footerNav .btnBlock .btnTop:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  left: 50%;
  margin-left: -7px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(-135deg);
}

#footerNav .btnBlock .btnTop span {
  visibility: hidden;
}

#footerNav .menuBlock {
  padding: 10px 0;
}

#footerNav .menuBox {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: auto;
}

#footerNav .menuBox li {
  padding: 5px 30px;
}

#footerNav .menuBox a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  padding-right: 15px;
  text-decoration: underline;
  white-space: nowrap;
}

#footerNav .menuBox a:after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(-45deg);
}

@media screen and (max-width:768px) {

  #footerNav .btnBlock {
    width: 100%;
    padding: 50px 0 30px;
  }

  #footerNav .btnBlock .btnTop {
    width: 45px;
    height: 45px;
    border-radius: 23px;
  }

  #footerNav .btnBlock .btnTop:before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -4px;
    left: 50%;
    margin-left: -5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #52A0EE;
    border-bottom: 2px solid #52A0EE;
    transform: rotateZ(-135deg);
  }

  #footerNav .menuBlock {
    display: none;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ footer */

footer p {
  line-height: 1.5;
}

footer .infoBlock {
  text-align: center;
  background: #6BADEF;
  padding: 20px 0;
}

footer .infoBlock .name {
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

footer .infoBlock .address {
  font-size: 1.3rem;
  color: #fff;
}

footer .infoBlock .tel {
  font-size: 1.3rem;
  color: #fff;
}

footer .logoblock {
  text-align: center;
  padding: 20px 0;
}

footer .logoblock .img {
  display: inline-block;
  width: 135px;
}

footer .copyBlock {
  text-align: center;
  padding: 10px 0;
  background: #f7f7f7;
  border-bottom: 1px solid #ccc;
}

footer .copyBlock p {
  font-size: 1.2rem;
}

footer .menuBlock {
  display: none;
}

@media screen and (max-width:768px) {

  footer {
    padding-bottom: 60px;
  }

  footer .infoBlock {
    padding: 20px 0;
  }

  footer .copyBlock {
    padding: 10px 0;
  }

  footer .copyBlock p {
    font-size: 1.1rem;
  }

  footer .menuBlock {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1001;
  }

  footer .menuBlock .menuBox {
    display: table;
    width: 100%;
  }

  footer .menuBlock .menuBox>li {
    display: table-cell;
    width: 50%;
  }

  footer .menuBlock .menuBox>li:first-child {
    border-right: 1px solid #fff;
  }

  footer .menuBlock .menuBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #52A0EE;
    width: 100%;
    height: 60px;
  }

}

/* --- max-width:768px */

/* ===================== scrollBox */

.scrollBox {
  height: 260px;
  overflow-y: auto;
}

@media screen and (max-width:768px) {

  .scrollBox {
    height: 140px;
  }

  .scrollBox::-webkit-scrollbar {
    width: 5px;
  }

  .scrollBox::-webkit-scrollbar-track {
    background: #dddddd;
  }

  .scrollBox::-webkit-scrollbar-thumb {
    background: #aaaaaa;
  }

}

/* --- max-width:768px */

/* ###########################################################################################
   ###
   ### ■ パーツ
   ###
   ########################################################################################### */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ box */

/* ===================== grayBox */

.grayBox {
  background: #F2F2F2;
  padding: 30px;
  margin-top: 40px;
}

@media screen and (max-width:768px) {

  .grayBox {
    padding: 20px;
    margin-top: 20px;
  }

}

/* --- max-width:768px */

/* ===================== borderBox */

.borderBox {
  margin-top: 20px;
  padding: 20px;
  border: 5px solid #F2F2F2;
}

.borderBox *:first-child {
  margin-top: 0;
}

@media screen and (max-width:768px) {

  .borderBox {
    margin-top: 10px;
    padding: 15px;
    border: 3px solid #F2F2F2;
  }

}

/* --- max-width:768px */

/* ===================== tabBox */

.tabArea {
  margin-top: 50px;
}

.tabBox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
}

.tabBox li {
  text-align: center;
  margin: 0 1px;
  width: 100%;
}

.tabBox li a {
  display: block;
  border-bottom: 4px solid #ddd;
  font-size: 1.8rem;
  padding: 15px 0;
  color: #ddd;
}

.tabContents {
  background: #F7F7F7;
  padding: 50px 0;
}

.tabContents .section:first-of-type {
  margin-top: 0;
}

.tabContents>div {
  display: none;
}

.tabContents>div.isShown {
  display: block;
}

@media screen and (max-width:768px) {

  .tabArea {
    margin-top: 30px;
  }

  .tabBox {
    margin-top: 20px;
  }

  .tabBox li a {
    font-size: 1.3rem;
    padding: 8px 0;
    color: #ddd;
  }

  .tabContents {
    background: #F7F7F7;
    padding: 30px 0;
  }

}

/* --- max-width:768px */

/* ===================== colBox */

.colBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: auto;
}

/* ===================== loginBox */

.loginBox {
  margin-top: 30px;
  display: table;
  width: 100%;
}

.loginBox dt {
  display: table-cell;
  width: 150px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.loginBox dd {
  display: table-cell;
  width: calc(100% - 150px);
}

.loginBox .indentList {
  font-size: 1.4rem;
}

.loginBox input {
  width: 650px;
}

@media screen and (max-width:768px) {

  .loginBox {
    margin-top: 20px;
    display: block;
    width: 100%;
  }

  .loginBox dt {
    display: block;
    width: 100%;
  }

  .loginBox dd {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .loginBox .indentList {
    font-size: 1.3rem;
  }

  .loginBox input {
    width: 100%;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ttl */

.ttlBar {
  border-left: 5px solid #52A0EE;
  font-size: 2.6rem;
  padding: 0 0 0 15px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width:768px) {

  .ttlBar {
    font-size: 2.0rem;
    padding: 0 0 0 12px;
  }

}

/* --- max-width:768px */

.ttlBorder {
  border-bottom: 1px solid #ccc;
  font-size: 2.2rem;
  padding: 0 0 7px 0;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ttlBorder.noBorder {
  border: none;
  padding: 0;
}

@media screen and (max-width:768px) {

  .ttlBorder {
    font-size: 1.8rem;
    padding: 0 0 7px 0;
  }

}

/* --- max-width:768px */

.ttlSquare {
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-left: 20px;
}

.ttlSquare:before {
  content: '';
  position: absolute;
  display: block;
  background: #52A0EE;
  top: 50%;
  margin-top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  background-size: contain;
}

@media screen and (max-width:768px) {

  .ttlSquare {
    font-size: 1.6rem;
    padding-left: 15px;
  }

  .ttlSquare:before {
    top: 50%;
    margin-top: -5px;
    left: 0;
    width: 8px;
    height: 8px;
    background-size: contain;
  }

}

/* --- max-width:768px */

.ttl18 {
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 20px;
}

@media screen and (max-width:768px) {

  .ttl18 {
    font-size: 1.6rem;
    margin-top: 15px;
  }

}

/* --- max-width:768px */

.ttlBig {
  font-size: 2.6rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 20px;
}

@media screen and (max-width:768px) {

  .ttlBig {
    font-size: 2.0rem;
    margin-top: 15px;
  }

}

/* --- max-width:768px */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ btn */

.isOff {
  background: #ddd !important;
  pointer-events: none;
}

/* ===================== btnNml */

.btnNml {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: auto;
  width: 390px;
  height: 70px;
  border-radius: 35px;
  position: relative;
  padding: 0 50px;
  cursor: pointer;
}

.btnNml.blue {
  background: #52A0EE;
}

.btnNml.navy {
  background: #1B5591;
}

.btnNml.arwR:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  right: 35px;
  margin-left: -7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotateZ(-45deg);
}

.btnNml.arwL:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  left: 40px;
  margin-left: -7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotateZ(135deg);
}

.btnNml em {
  color: #fff;
  font-size: 1.8rem;
  display: inline-block;
}

.btnNml span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

@media screen and (max-width:768px) {

  .btnNml {
    width: 95%;
    max-width: 390px;
    height: 65px;
    border-radius: 33px;
    padding: 0 35px;
    flex-direction: column;
  }

  .btnNml.arwR:before {
    right: 25px;
  }

  .btnNml.arwL:before {
    left: 30px;
  }

  .btnNml em {
    font-size: 1.6rem;
    text-align: center;
  }

  .btnNml span {
    font-size: 1.2rem;
    text-align: center;
  }

}

/* --- max-width:768px */

/* ===================== btnWhite */

.btnWhite {
  background: #fff;
  border: 2px solid #52A0EE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: auto;
  width: 390px;
  height: 70px;
  border-radius: 35px;
  position: relative;
  padding: 0 50px;
  cursor: pointer;
}

.btnWhite.arwR:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  right: 35px;
  margin-left: -7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(-45deg);
}

.btnWhite.arwL:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  left: 40px;
  margin-left: -7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(135deg);
}

.btnWhite em {
  color: #52A0EE;
  font-size: 1.8rem;
  display: inline-block;
}

.btnWhite span {
  color: #52A0EE;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btnWhite.upload em {
  position: relative;
  padding-right: 30px;
}

.btnWhite.upload em:before {
  content: '';
  position: absolute;
  display: block;
  background: url(/images/img/icon_upload.png) no-repeat center;
  top: 50%;
  margin-top: -10px;
  right: 0;
  width: 18px;
  height: 18px;
  background-size: contain;
}

@media screen and (max-width:768px) {

  .btnWhite {
    width: 95%;
    max-width: 390px;
    height: 65px;
    border-radius: 33px;
    padding: 0 35px;
    flex-direction: column;
  }

  .btnWhite.arwR:before {
    right: 25px;
  }

  .btnWhite.arwL:before {
    left: 30px;
  }

  .btnWhite em {
    font-size: 1.6rem;
    text-align: center;
  }

  .btnWhite span {
    font-size: 1.2rem;
    text-align: center;
  }

}

/* --- max-width:768px */

/* ===================== btnBorder */

.btnBorder {
  background: #fff;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: auto;
  width: 210px;
  height: 50px;
  border-radius: 25px;
  position: relative;
  padding: 0 40px;
}

.btnBorder.arwR:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  right: 25px;
  margin-left: -7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(-45deg);
}

.btnBorder.arwL:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -5px;
  left: 30px;
  margin-left: -7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(135deg);
}

.btnBorder em {
  font-size: 1.8rem;
  font-weight: normal;
  display: inline-block;
}

.btnBorder span {
  color: #52A0EE;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width:768px) {

  .btnBorder {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px;
    flex-direction: column;
  }

  .btnBorder.arwR:before {
    right: 25px;
  }

  .btnBorder.arwL:before {
    left: 30px;
  }

  .btnBorder em {
    font-size: 1.6rem;
    text-align: center;
  }

  .btnBorder span {
    font-size: 1.2rem;
    text-align: center;
  }

}

/* --- max-width:768px */

/* ===================== btnCancel */

.btnCancel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: auto;
  border: 2px solid #999;
  border-radius: 3px;
  width: 160px;
  height: 55px;
}

.btnCancel em {
  display: inline-block;
  padding-right: 30px;
  position: relative;
}

.btnCancel em:before {
  content: '';
  position: absolute;
  display: block;
  background: #999;
  top: 50%;
  margin-top: -1px;
  right: 0;
  width: 16px;
  height: 2px;
  background-size: contain;
  transform: rotateZ(45deg);
}

.btnCancel em:after {
  content: '';
  position: absolute;
  display: block;
  background: #999;
  top: 50%;
  margin-top: -8px;
  right: 7px;
  width: 2px;
  height: 16px;
  background-size: contain;
  transform: rotateZ(45deg);
}

@media screen and (max-width:768px) {

  .btnCancel {
    width: 160px;
    height: 50px;
    flex-direction: column;
  }

}

/* --- max-width:768px */

/* ===================== btnSmall */

.btnSmall {
  display: inline-block;
  border: 2px solid #999;
  border-radius: 3px;
  width: 160px;
  padding: 12px 0;
  text-align: center;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ etc */

/* ===================== favorite */

.favorite {
  display: block;
  padding-left: 75px;
  position: relative;
}

.favorite:before {
  content: '';
  position: absolute;
  display: block;
  background: url(/images/img/icon_favorite.png) no-repeat center;
  top: 50%;
  margin-top: -28px;
  left: 0;
  width: 55px;
  height: 55px;
  background-size: contain !important;
}

.favorite.is_on:before {
  background: url(/images/img/icon_favorite_on.png) no-repeat center;
}

.favorite span {
  display: block;
}

.favorite em {
  display: block;
  font-size: 2.6rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width:768px) {

  .favorite {
    padding-left: 50px;
  }

  .favorite:before {
    margin-top: -20px;
    width: 40px;
    height: 40px;
  }

  .favorite span {
    font-size: 1.1rem;
  }

  .favorite em {
    font-size: 1.8rem;
  }

}

/* --- max-width:768px */

/* ===================== linkTxt */

.linkTxt {
  text-decoration: underline;
  position: relative;
}

.linkTxt.arwR {
  padding-right: 15px;
}

.linkTxt.arwR:after {
  content: '';
  position: absolute;
  display: block;
  bottom: 6px;
  right: 0;
  width: 7px;
  height: 7px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(-45deg);
}

.linkTxt.arwL {
  padding-left: 18px;
}

.linkTxt.arwL:after {
  content: '';
  position: absolute;
  display: block;
  bottom: 6px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #52A0EE;
  border-bottom: 2px solid #52A0EE;
  transform: rotateZ(135deg);
}

@media screen and (max-width:768px) {

  .linkTxt:after {
    bottom: 5px !important;
  }

}

/* --- max-width:768px */

/* ===================== required optional */

.required {
  display: inline-block;
  background: #EE5252;
  font-size: 1.2rem;
  color: #fff;
  margin-right: 5px;
  padding: 2px 5px;
  vertical-align: top;
}

.optional {
  display: inline-block;
  background: #17C700;
  font-size: 1.2rem;
  color: #fff;
  margin-right: 5px;
  padding: 2px 5px;
  vertical-align: top;
}

.required.end,
.optional.end {
  margin-left: 5px;
  margin-right: 0;
  vertical-align: middle;
}

@media screen and (max-width:768px) {

  .required,
  .optional {
    font-size: 1.0rem;
    margin-right: 5px;
    padding: 2px 4px;
    vertical-align: middle;
  }

}

/* --- max-width:768px */

/* ===================== linkBlank */

.linkBlank {
  position: relative;
  display: inline;
  /*  padding-right: 25px; */
  color: #52A0EE;
  text-decoration: underline;
}

/*
.linkBlank:before{
  content: '';
  position: absolute;
  display: block;
  background: #fff;
  bottom: 8px;
  right: 7px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #52A0EE;
  border-left: 1px solid #52A0EE;
  background-size: contain;
}

.linkBlank:after{
  content: '';
  position: absolute;
  display: block;
  background: #fff;
  bottom: 4px;
  right: 3px;
  width: 9px;
  height: 9px;
  border: 1px solid #52A0EE;
  background-size: contain;
} */

/* ===================== blueHead grayHead */

.blueHead {
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 10px 20px;
  background: #E2EDF7;
  margin-top: 20px;
}

.grayHead {
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 10px 20px;
  background: #F7F7F7;
  margin-top: 20px;
}

@media screen and (max-width:768px) {

  .blueHead {
    font-size: 1.8rem;
    padding: 10px;
  }

  .grayHead {
    font-size: 1.8rem;
    padding: 10px;
  }

}

/* --- max-width:768px */

/* ===================== grayTable */

.grayTable {
  width: 100%;
  margin-top: 20px;
}

.grayTable.col2 .head {
  width: 50%;
}

.grayTable.col3 .head {
  width: calc(100% / 3);
}

.grayTable.col4 .head {
  width: calc(100% / 4);
}

.grayTable .head {
  background: #F7F7F7;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.grayTable th,
.grayTable td {
  padding: 15px 10px;
  border: 1px solid #ccc;
  vertical-align: middle;
}

/* ===================== normalList */

.normalList {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: auto;
}

.normalList.col3_pc li {
  width: calc(100% / 3);
  vertical-align: top;
}

.normalList.col2 li {
  width: calc(50% - 15px);
}

@media screen and (max-width:768px) {

  .normalList.col3_pc {
    display: block;
  }

  .normalList.col3_pc li {
    display: block;
    width: 100%;
  }

}

/* --- max-width:768px */

/* ###########################################################################################
   ###
   ### ■ normalBlock
   ###
   ########################################################################################### */

.normalBlock {
  margin-top: 50px;
  position: relative;
}

.normalBlock.with_bg {
  background: #F7F7F7;
  padding: 50px 0;
}

.frame960 {
  width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.normalBlock .section {
  margin-top: 40px;
}

.normalBlock .section:first-of-type {
  margin-top: 0;
}

@media screen and (max-width:768px) {

  .normalBlock {
    margin-top: 30px;
  }

  .normalBlock.with_bg {
    padding: 30px 0;
  }

  .frame960 {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .normalBlock .section {
    margin-top: 40px;
  }

}

/* --- max-width:768px */

/* ===================== formBox */

.formBox {
  display: none;
  background: #F7F7F7;
  padding: 20px;
}

.formBox.no_bg {
  background: #fff;
  padding: 0;
  margin-top: 30px;
}

.formBox .option {
  display: none;
}

/*.formBox .option *:first-of-type{margin-top: 0;}*/

.formBox .formBox {
  background: #E2EDF7;
}

@media screen and (max-width:768px) {

  .formBox {
    padding: 10px;
  }

}

/* --- max-width:768px */

/* ===================== etc */

.btnStyle>select {
  width: 100%;
}

.btnStyle>input[type=checkbox]+span {
  width: 100%;
  border: 1px solid #ccc;
  padding: 18px 18px 17px 45px !important;
}

.btnStyle>input[type=checkbox]+span:before {
  left: 15px !important;
}

.btnStyle>input[type=checkbox]+span:after {
  left: 21px !important;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.isFadein {
  display: block !important;
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 0.5s;
}

.isShown {
  display: block !important;
}

/* ===================== ttlFull ttlAcc */

.ttlAcc {
  font-size: 1.7rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 17px 30px;
  background: #53a0ee;
  color: #fff;
  line-height: normal;
}

.iconBlock .section.top.ttlFull {
  padding: 0;
}

.iconBlock .section.top.ttlFull .btnAcc {
  padding: 30px 60px 30px 30px;
}

.iconBlock .section.top.ttlFull .ttlBox {
  padding: 0 30px 30px 30px;
}

.iconBlock .section.top.ttlFull .bttn {
  padding-bottom: 30px;
  margin-top: 0;
}

.iconBlock .section.top.ttlFull .btnAcc:before {
  right: 30px;
}

.iconBlock .section.top.ttlFull .btnAcc:after {
  right: 39px;
}

@media screen and (max-width:768px) {
  .commonDisplayBtn {
    display: block;
  }

  .ttlAcc {
    font-size: 1.8rem;
    padding: 10px;
  }

  .iconBlock .section.top.ttlFull .btnAcc,
  .iconBlock .section.top.ttlFull .ttlBox,
  .iconBlock .section.top.ttlFull .bttn {
    padding: 20px;
  }
}

.commonDisplayBtn {
  display: none;
}

/* ===================== tableArea */

.tableArea {
  overflow-x: auto;
  margin-bottom: 50px;
}

.p-table {
  width: 100%;
  border: 1px solid #dcdbd9;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #dcdbd9;
}

.p-table thead {
  text-align: center;
}

.p-table tbody {
  text-align: left;
}

.p-table tr th {
  color: #000;
  background-color: #cce6ff;
  font-weight: 700;
  line-height: 1.45;
  padding: 9px 16px;
}

.p-table tr td {
  vertical-align: middle;
  padding: 10px 15px;
  white-space: nowrap;
}

.bg_blue {
  background-color: #e6f2ff;
}

.longurl {
  word-break: break-all;
}

@media (hover: hover) {
  #header .topBlock .btnArea .btn:hover {
    background: #ddd !important;
  }

  #header .menuBlock .menuBox a:hover {
    background: #ddd;
  }

  #footerNav .btnBlock .btnTop:hover {
    background: #ddd;
  }

  #footerNav .menuBox a:hover {
    text-decoration: none;
  }

  .tabBox li a:hover,
  .tabBox li a.isActive {
    border-color: #52A0EE;
    color: #52A0EE;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .btnNml:hover {
    background: #ddd;
  }

  .btnWhite:hover {
    background: #ddd;
  }

  .btnBorder:hover {
    background: #ddd;
  }

  .btnCancel:hover {
    background: #ddd;
  }

  .favorite:hover:before {
    background: url(/images/img/icon_favorite_on.png) no-repeat center;
  }

  .linkTxt:hover {
    text-decoration: none;
  }

  .linkBlank:hover {
    text-decoration: none;
  }

  .btnSmall:hover {
    background: #ddd;
  }
}

@media (hover: none) {
  #header .topBlock .btnArea .btn:active {
    background: #ddd !important;
  }

  #header .menuBlock .menuBox a:active {
    background: #ddd;
  }

  #footerNav .btnBlock .btnTop:active {
    background: #ddd;
  }

  #footerNav .menuBox a:active {
    text-decoration: none;
  }

  .tabBox li a:active,
  .tabBox li a.isActive {
    border-color: #52A0EE;
    color: #52A0EE;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .btnNml:active {
    background: #ddd;
  }

  .btnWhite:active {
    background: #ddd;
  }

  .btnBorder:active {
    background: #ddd;
  }

  .btnCancel:active {
    background: #ddd;
  }

  .favorite:active:before {
    background: url(/images/img/icon_favorite_on.png) no-repeat center;
  }

  .linkTxt:active {
    text-decoration: none;
  }

  .linkBlank:active {
    text-decoration: none;
  }

  .btnSmall:active {
    background: #ddd;
  }
}