/*
* 基本スタイル
* 全ページ共通スタイル
* メイン部分
* ヘッダー
* グローバルナビゲーション
* フッター
* リンク
* パーツ
* 汎用
*/
/* LESS Document */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlvAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmYUtvAw.ttf) format('truetype');
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.6vw;
  }
}
p {
  margin-bottom: 1.5em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #CBD2DE 1px solid;
  margin: 30px 0;
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 20px;
  line-height: 1.2;
}
table thead th {
  background: #B2DFF1;
  color: #005879;
}
table tbody th {
  background: #D9EFF8;
  color: #005879;
}
table th {
  padding: 15px;
  text-align: center;
  border: #B2DFF1 1px solid;
}
@media screen and (max-width: 767px) {
  table th {
    padding: 10px;
  }
}
table td {
  padding: 15px;
  border: #B2DFF1 1px solid;
}
@media screen and (max-width: 767px) {
  table td {
    padding: 10px;
  }
}
table.table_01 {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  table.table_01 {
    display: block;
  }
  table.table_01 tbody,
  table.table_01 thead,
  table.table_01 tr,
  table.table_01 th,
  table.table_01 td {
    display: block;
  }
}
table.table_01 tr:nth-child(2n + 1) {
  background: none;
}
@media screen and (max-width: 767px) {
  table.table_01 tr:nth-child(n + 2) th {
    border-top: none;
  }
}
table.table_01 th {
  padding: 30px;
  background: #F7F7F7;
  border: #CCC 1px solid;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  table.table_01 th {
    padding: 10px 15px;
    white-space: normal;
  }
}
table.table_01 td {
  padding: 30px;
  border: #CCC 1px solid;
}
@media screen and (max-width: 767px) {
  table.table_01 td {
    padding: 10px 15px;
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #0093D0;
    border-radius: 15px;
  }
  .tableResponsive table thead {
    display: none;
  }
  .tableResponsive table th {
    display: block;
  }
  .tableResponsive table tr {
    display: block;
  }
  .tableResponsive table td {
    display: block;
    border-top: none;
  }
  .tableResponsive table td::before {
    content: attr(aria-label);
    display: block;
    width: auto;
    margin: -10px -15px 10px;
    padding: 5px 10px;
    background: #EEE;
    text-align: center;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 2rem;
  list-style: disc;
}
.listDisc_01 li:not(:last-child) {
  margin: 0 0 10px;
}
.listDisc_02 {
  padding: 0 0 0 2rem;
}
.listDisc_02 li:not(:last-child) {
  margin: 0 0 10px;
}
.listDisc_02 li::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  width: 1.8rem;
  margin: 0 0 0 -1.8rem;
  text-align: center;
}
.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}
.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: '(' counter(number) ') ';
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 {
  display: flex;
  flex-wrap: wrap;
}
.dlList_01 dt {
  width: 150px;
  padding: 10px;
}
.dlList_01 dd {
  width: calc(100% - 150px);
  padding: 10px;
}
.dlList_01.dlBorder {
  border-bottom: #666 1px dotted;
}
.dlList_01.dlBorder dt:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
.dlList_01.dlBorder dd:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
@media screen and (max-width: 767px) {
  .dlList_01.dlBorder dd:nth-of-type(n+2) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .dlList_01 {
    display: block;
  }
  .dlList_01 dt {
    width: 100%;
    padding: 8px 0 2px;
  }
  .dlList_01 dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_02 {
  display: flex;
  flex-wrap: wrap;
}
.dlList_02 dt {
  width: 150px;
  padding: 10px;
}
.dlList_02 dd {
  width: calc(100% - 150px);
  padding: 10px;
}
.dlList_02.dlBorder {
  border-bottom: #666 1px dotted;
}
.dlList_02.dlBorder dt:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
.dlList_02.dlBorder dd:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
@media screen and (max-width: 767px) {
  .dlList_02.dlBorder dd:nth-of-type(n+2) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .dlList_02 dt {
    width: 80px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	全ページで必ず使っているstyle
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.inner::after {
  content: '';
  display: block;
  clear: both;
}
.inner::after {
  content: '';
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
@keyframes pageTop {
  0% {
    height: 0;
    bottom: 25px;
  }
  50% {
    height: 60px;
    bottom: 25px;
  }
  100% {
    height: 0;
    bottom: 85px;
  }
}
.bnrArea {
  max-width: 1080px;
  margin: 0 auto;
  padding: 45px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .bnrArea {
    padding: 30px 10px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	見出し
+++++++++++++++++++++++++++++++++++++++++++ */
.mainArea .title {
  background: url("/common/img/bg_lower.jpg") no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
  .mainArea .title {
    margin-bottom: 20px;
  }
}
.mainArea .title h1 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 180px 0 0;
  height: 343px;
  font-size: 4.8rem;
}
@media screen and (max-width: 1023px) {
  .mainArea .title h1 {
    height: auto;
    padding: 10vh 0 10vh;
  }
}
@media screen and (max-width: 767px) {
  .mainArea .title h1 {
    padding: 7.5vh 0 7.5vh;
    font-size: 8.6vw;
  }
}
.mainArea h2 {
  margin: 0 0 30px;
  padding: 5px 5px 8px;
  line-height: 1.4;
  font-size: 3.2rem;
  text-align: center;
  position: relative;
}
.mainArea h2::after {
  content: '';
  display: block;
  width: 90px;
  height: 5px;
  margin: auto;
  background: #0093D0;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .mainArea h2 {
    font-size: 6.4vw;
  }
}
.mainArea h2.fulltime::after {
  background-color: #FF7500;
}
.mainArea h2.parttime::after {
  background-color: #D01F00;
}
.mainArea h3 {
  margin: 30px 0 20px;
  padding: 0 0 0 13px;
  font-size: 2.6rem;
  line-height: 1.4;
  border-left: #0095D0 6px solid;
}
@media screen and (max-width: 767px) {
  .mainArea h3 {
    font-size: 5.2vw;
  }
}
.mainArea h4 {
  margin: 30px 0 20px;
  font-size: 2.2rem;
  border-bottom: #999 1px dotted;
}
@media screen and (max-width: 767px) {
  .mainArea h4 {
    font-size: 4.4vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	トップページ
+++++++++++++++++++++++++++++++++++++++++++ */
.mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 837px;
  background: url("/common/img/top/mv.jpg") no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 320px;
    height: 75vh;
    margin-bottom: 10vh;
  }
}
.mv .mvText {
  padding: 10px 0 10px 30px;
  margin: 370px 0 auto;
  background: #FFF;
  text-align: center;
  line-height: 1.2;
  font-size: 5.4rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv .mvText {
    width: 95%;
    margin: 10vh 0 auto;
    font-size: 10vw;
  }
}
.mv .mvText .label {
  width: 265px;
  margin: auto;
  text-align: center;
  font-size: 2.2rem;
  background: #0093D0;
  color: #FFF;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}
.mv .mvBnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  max-width: calc(1100px);
  width: 100%;
  margin: auto -10px 0;
}
@media screen and (max-width: 767px) {
  .mv .mvBnr {
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    margin: auto 0 0;
    position: relative;
    top: 10vh;
  }
}
.mv .mvBnr li {
  margin: 10px 10px 0;
  text-align: center;
}
.serviceArea {
  padding: 75px 0;
  background: url("/common/img/top/bg_service.jpg") no-repeat center center / cover;
}
@media screen and (max-width: 1023px) {
  .serviceArea {
    padding: 50px 10px;
  }
}
.serviceArea .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.serviceArea .inner::after {
  content: none;
}
.serviceArea .subjectBox {
  width: 100%;
  margin: 0 0 32px;
  padding-right: 24px;
  padding-bottom: 38px;
}
@media screen and (max-width: 1023px) {
  .serviceArea .subjectBox {
    padding: 15px;
  }
}
.serviceArea .subjectBox dl {
  margin: 0 0 35px;
}
.serviceArea .subjectBox dl .subjectItem {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 1px 0;
  border-bottom: #999 1px dotted;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    border: none;
  }
}
.serviceArea .subjectBox dl .subjectItem dt {
  width: 138px;
  padding: 16px 14px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dt {
    width: 100%;
    padding: 5px;
  }
}
.serviceArea .subjectBox dl .subjectItem dt.physician {
  background: rgba(0, 147, 208, 0.2);
  border-right: #0093D0 5px solid;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dt.physician {
    border-right: none;
    border-bottom: #0093D0 5px solid;
  }
}
.serviceArea .subjectBox dl .subjectItem dt.surgeon {
  background: rgba(40, 168, 168, 0.2);
  border-right: #28A8A8 5px solid;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dt.surgeon {
    border-right: none;
    border-bottom: #28A8A8 5px solid;
  }
}
.serviceArea .subjectBox dl .subjectItem dt.other {
  background: rgba(38, 170, 48, 0.2);
  border-right: #26AA30 5px solid;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dt.other {
    border-right: none;
    border-bottom: #26AA30 5px solid;
  }
}
.serviceArea .subjectBox dl .subjectItem dt.comprehensive {
  background: rgba(174, 57, 171, 0.2);
  border-right: #AE39AB 5px solid;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dt.comprehensive {
    border-right: none;
    border-bottom: #AE39AB 5px solid;
  }
}
.serviceArea .subjectBox dl .subjectItem dd {
  padding: 17px 0 17px 30px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dd {
    padding: 10px 0;
  }
}
.serviceArea .subjectBox dl .subjectItem dd ul li {
  display: inline-flex;
  margin: 0 26px 0 0;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dd ul li {
    margin: 0;
  }
}
.serviceArea .subjectBox dl .subjectItem dd ul li label {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dd ul li label {
    padding: 5px 10px;
  }
}
.serviceArea .subjectBox dl .subjectItem dd ul li input {
  transform: scale(1.5);
  margin: 0 4px 0 0;
}
@media screen and (max-width: 767px) {
  .serviceArea .subjectBox dl .subjectItem dd ul li input {
    transform: none;
  }
}
.serviceArea .subjectBox .btn {
  transition: .2s;
}
.serviceArea .subjectBox .btn i {
  margin: 0 7px 0 0;
}
.serviceArea .searchprefBox {
  width: 604px;
  padding: 20px 0px 30px;
}
@media screen and (max-width: 1023px) {
  .serviceArea .searchprefBox {
    width: 100%;
    margin: 0 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .serviceArea .searchprefBox {
    opacity: 20px 10px;
  }
}
.serviceArea .searchprefBox h2 {
  margin-bottom: 18px;
}
.serviceArea .searchprefBox ul {
  width: 604px;
  height: 410px;
  margin: 0 auto;
  position: relative;
}
.serviceArea .searchprefBox ul li {
  position: absolute;
}
.serviceArea .searchprefBox ul li.hokkaido {
  top: 0px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.aomori {
  top: 63px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.iwate {
  top: 95px;
  left: 520px;
}
.serviceArea .searchprefBox ul li.miyagi {
  top: 128px;
  left: 520px;
}
.serviceArea .searchprefBox ul li.akita {
  top: 95px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.yamagata {
  top: 128px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.fukushima {
  top: 161px;
  left: 520px;
}
.serviceArea .searchprefBox ul li.ibaraki {
  top: 194px;
  left: 520px;
}
.serviceArea .searchprefBox ul li.tochigi {
  top: 161px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.gunma {
  top: 194px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.saitama {
  top: 227px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.chiba {
  top: 227px;
  left: 520px;
}
.serviceArea .searchprefBox ul li.tokyo {
  top: 260px;
  left: 520px;
}
.serviceArea .searchprefBox ul li.kanagawa {
  top: 260px;
  left: 475px;
}
.serviceArea .searchprefBox ul li.niigata {
  top: 161px;
  left: 430px;
}
.serviceArea .searchprefBox ul li.toyama {
  top: 194px;
  left: 385px;
}
.serviceArea .searchprefBox ul li.ishikawa {
  top: 194px;
  left: 340px;
}
.serviceArea .searchprefBox ul li.fukui {
  top: 194px;
  left: 295px;
}
.serviceArea .searchprefBox ul li.yamanashi {
  top: 227px;
  left: 430px;
}
.serviceArea .searchprefBox ul li.nagano {
  top: 194px;
  left: 430px;
}
.serviceArea .searchprefBox ul li.gifu {
  top: 227px;
  left: 385px;
}
.serviceArea .searchprefBox ul li.shizuoka {
  top: 260px;
  left: 430px;
}
.serviceArea .searchprefBox ul li.aichi {
  top: 260px;
  left: 385px;
}
.serviceArea .searchprefBox ul li.mie {
  top: 260px;
  left: 340px;
}
.serviceArea .searchprefBox ul li.shiga {
  top: 227px;
  left: 340px;
}
.serviceArea .searchprefBox ul li.kyoto {
  top: 227px;
  left: 250px;
}
.serviceArea .searchprefBox ul li.osaka {
  top: 227px;
  left: 295px;
}
.serviceArea .searchprefBox ul li.hyogo {
  top: 260px;
  left: 250px;
}
.serviceArea .searchprefBox ul li.nara {
  top: 260px;
  left: 295px;
}
.serviceArea .searchprefBox ul li.wakayama {
  top: 293px;
  left: 295px;
}
.serviceArea .searchprefBox ul li.tottori {
  top: 227px;
  left: 206px;
}
.serviceArea .searchprefBox ul li.shimane {
  top: 227px;
  left: 161px;
}
.serviceArea .searchprefBox ul li.okayama {
  top: 260px;
  left: 206px;
}
.serviceArea .searchprefBox ul li.hiroshima {
  top: 260px;
  left: 161px;
}
.serviceArea .searchprefBox ul li.yamaguchi {
  top: 260px;
  left: 116px;
}
.serviceArea .searchprefBox ul li.tokushima {
  top: 329px;
  left: 241px;
}
.serviceArea .searchprefBox ul li.kagawa {
  top: 296px;
  left: 241px;
}
.serviceArea .searchprefBox ul li.ehime {
  top: 296px;
  left: 197px;
}
.serviceArea .searchprefBox ul li.kouchi {
  top: 329px;
  left: 197px;
}
.serviceArea .searchprefBox ul li.fukuoka {
  top: 296px;
  left: 143px;
}
.serviceArea .searchprefBox ul li.saga {
  top: 296px;
  left: 98px;
}
.serviceArea .searchprefBox ul li.nagasaki {
  top: 296px;
  left: 53px;
}
.serviceArea .searchprefBox ul li.kumamoto {
  top: 329px;
  left: 98px;
}
.serviceArea .searchprefBox ul li.oita {
  top: 329px;
  left: 143px;
}
.serviceArea .searchprefBox ul li.miyazaki {
  top: 362px;
  left: 143px;
}
.serviceArea .searchprefBox ul li.kagoshima {
  top: 362px;
  left: 98px;
}
.serviceArea .searchprefBox ul li.okinawa {
  top: 370px;
  left: 42px;
}
.serviceArea .searchsubjectBox {
  margin: 0 0 0 36px;
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .serviceArea .searchsubjectBox {
    margin: 0;
  }
}
@media screen and (max-width: 1023px) {
  .serviceArea .searchsubjectBox ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .serviceArea .searchsubjectBox ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.serviceArea .searchsubjectBox ul li {
  text-align: center;
  margin: 0 10px 10px;
}
.serviceArea .searchsubjectBox ul li a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  border-radius: 184px;
  border: #FFF 4px solid;
  font-size: 2.8rem;
  line-height: 1.2;
  text-decoration: none;
}
.serviceArea .searchsubjectBox ul li a.fulltime {
  background: #FFE3CC;
  color: #FF7500;
}
.serviceArea .searchsubjectBox ul li a.fulltime:hover {
  background: #FF7500;
  color: #FFF;
}
.serviceArea .searchsubjectBox ul li a.parttime {
  background: #F5CCD6;
  color: #D01F00;
}
.serviceArea .searchsubjectBox ul li a.parttime:hover {
  background: #D01F00;
  color: #FFF;
}
.serviceArea .searchsubjectBox ul li a::before {
  margin: 0 0 5px;
  content: '\f0f0';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 6rem;
}
.serviceArea .searchsubjectBox ul li a::after {
  margin: 5px 0 0;
  content: '\f138';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.6rem;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	下層ページ
+++++++++++++++++++++++++++++++++++++++++++ */
/*+++++++++++++++++++++++++++++++++++++++++++ cmsArea */
.cmsArea {
  padding: 0 0 50px;
}
.cmsArea ol {
  margin: 0 0 30px;
  list-style: decimal;
  padding-left: 25px;
}
.cmsArea ol > li {
  text-indent: 0;
}
.cmsArea .article {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 13px 14px;
  border: #EAEDF2 4px solid;
}
.cmsArea .article h2 {
  padding: 0;
  text-align: left;
}
.cmsArea .article h2::after {
  content: none;
}
.cmsArea .article p {
  margin: 20px 0;
}
.cmsArea .article ul {
  margin: 20px 0;
}
.cmsArea .article ul li {
  padding: 0 0 0 12px;
  line-height: 1.4;
  position: relative;
}
.cmsArea .article ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: -8px;
  border-radius: 8px;
  background: #0095D0;
  position: relative;
  left: -12px;
  vertical-align: 4px;
}
.cmsArea .RecruitmentContentBox {
  margin: 30px -14px -13px;
  padding: 47px;
  background: #EAEDF2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cmsArea .RecruitmentContentBox {
    padding: 15px;
  }
  .cmsArea .RecruitmentContentBox .btn {
    font-size: 4.2vw;
  }
}
.cmsArea .RecruitmentContentBox .telLink {
  margin: 20px 0 0;
}
.cmsArea .RecruitmentContentBox .telLink a {
  font-size: 3.6rem;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-style: italic;
  color: #0095D0;
}
@media screen and (max-width: 767px) {
  .cmsArea .RecruitmentContentBox .telLink a {
    font-size: 7.2vw;
  }
}
.cmsArea .RecruitmentContentBox .telLink a i {
  margin-right: 7px;
}
/*+++++++++++++++++++++++++++++++++++++++++++ wordpress */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
.alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}
.searchBtnList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1080px;
  padding: 0 65px;
  margin: 70px auto 0;
}
@media screen and (max-width: 1023px) {
  .searchBtnList {
    padding: 0 10px;
  }
}
.searchBtnList li {
  width: 49%;
  max-width: 460px;
  margin: 0 0 22px;
}
@media screen and (max-width: 767px) {
  .searchBtnList li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.searchBtnList li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  height: 100px;
  border: #0093D0 3px solid;
  border-radius: 7px;
  line-height: 1.2;
  font-size: 3.6rem;
  font-weight: bold;
  text-decoration: none;
  color: #0093D0;
}
@media screen and (max-width: 767px) {
  .searchBtnList li a {
    height: 65px;
    font-size: 2.6rem;
  }
}
.searchBtnList li a::after {
  content: '\f138';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.6rem;
  margin: 0 8px 0 auto;
}
.searchBtnList li a.fulltime {
  border-color: #FF7500;
  color: #FF7500;
  background-color: #FFEBDB;
}
.searchBtnList li a.fulltime:hover {
  background: #FF7500;
  color: #FFF;
}
.searchBtnList li a.parttime {
  border-color: #D01F00;
  color: #D01F00;
  background-color: #F8DAE1;
}
.searchBtnList li a.parttime:hover {
  background: #D01F00;
  color: #FFF;
}
.searchBtnList li a.location {
  border-color: #1E70B3;
  color: #1E70B3;
  background-color: #DBF0F9;
}
.searchBtnList li a.location:hover {
  background: #1E70B3;
  color: #FFF;
}
.searchBtnList li a.workstyle {
  border-color: #26AA30;
  color: #26AA30;
  background-color: #ECF7CA;
}
.searchBtnList li a.workstyle:hover {
  background: #26AA30;
  color: #FFF;
}
.searchBtnList li a i {
  width: 77px;
  text-align: center;
  font-size: 5.4rem;
}
@media screen and (max-width: 767px) {
  .searchBtnList li a i {
    width: 50px;
    font-size: 3.6rem;
  }
}
.subjectBox {
  width: 100%;
  margin: 0 0 32px;
  padding-right: 24px;
  padding-bottom: 38px;
}
@media screen and (max-width: 1023px) {
  .subjectBox {
    padding: 15px;
  }
}
.subjectBox dl {
  margin: 0 0 35px;
}
.subjectBox dl .subjectItem {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 1px 0;
  border-bottom: #999 1px dotted;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    border: none;
  }
}
.subjectBox dl .subjectItem dt {
  width: 166px;
  padding: 16px 14px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt {
    width: 100%;
    padding: 5px;
  }
}
.subjectBox dl .subjectItem dt.physician {
  background: rgba(0, 147, 208, 0.2);
  border-right: #0093D0 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.physician {
    border-right: none;
    border-bottom: #0093D0 5px solid;
  }
}
.subjectBox dl .subjectItem dt.surgeon {
  background: rgba(40, 168, 168, 0.2);
  border-right: #28A8A8 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.surgeon {
    border-right: none;
    border-bottom: #28A8A8 5px solid;
  }
}
.subjectBox dl .subjectItem dt.comprehensive {
  background: rgba(174, 57, 171, 0.2);
  border-right: #AE39AB 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.comprehensive {
    border-right: none;
    border-bottom: #AE39AB 5px solid;
  }
}
.subjectBox dl .subjectItem dt.other {
  background: rgba(38, 170, 48, 0.2);
  border-right: #26AA30 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.other {
    border-right: none;
    border-bottom: #26AA30 5px solid;
  }
}
.subjectBox dl .subjectItem dt.hokkaido {
  background: rgba(208, 31, 0, 0.2);
  border-right: #D01F00 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.hokkaido {
    border-right: none;
    border-bottom: #D01F00 5px solid;
  }
}
.subjectBox dl .subjectItem dt.tohoku {
  background: rgba(148, 104, 157, 0.2);
  border-right: #94689D 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.tohoku {
    border-right: none;
    border-bottom: #94689D 5px solid;
  }
}
.subjectBox dl .subjectItem dt.kanto {
  background: rgba(30, 112, 179, 0.2);
  border-right: #1E70B3 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.kanto {
    border-right: none;
    border-bottom: #1E70B3 5px solid;
  }
}
.subjectBox dl .subjectItem dt.chubu {
  background: rgba(38, 170, 48, 0.2);
  border-right: #26AA30 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.chubu {
    border-right: none;
    border-bottom: #26AA30 5px solid;
  }
}
.subjectBox dl .subjectItem dt.kinki {
  background: rgba(199, 182, 63, 0.2);
  border-right: #C7B63F 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.kinki {
    border-right: none;
    border-bottom: #C7B63F 5px solid;
  }
}
.subjectBox dl .subjectItem dt.chugoku {
  background: rgba(202, 123, 60, 0.2);
  border-right: #CA7B3C 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.chugoku {
    border-right: none;
    border-bottom: #CA7B3C 5px solid;
  }
}
.subjectBox dl .subjectItem dt.shikoku {
  background: rgba(200, 79, 62, 0.2);
  border-right: #C84F3E 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.shikoku {
    border-right: none;
    border-bottom: #C84F3E 5px solid;
  }
}
.subjectBox dl .subjectItem dt.kyusyu {
  background: rgba(191, 70, 149, 0.2);
  border-right: #BF4695 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.kyusyu {
    border-right: none;
    border-bottom: #BF4695 5px solid;
  }
}
.subjectBox dl .subjectItem dt.okinawa {
  background: rgba(210, 51, 55, 0.2);
  border-right: #D23337 5px solid;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dt.okinawa {
    border-right: none;
    border-bottom: #D23337 5px solid;
  }
}
.subjectBox dl .subjectItem dd {
  padding: 17px 0 12px 30px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dd {
    padding: 10px 0;
  }
}
.subjectBox dl .subjectItem dd ul li {
  display: inline-flex;
  margin: 0 26px 5px 0;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dd ul li {
    margin: 0;
  }
}
.subjectBox dl .subjectItem dd ul li label {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dd ul li label {
    padding: 5px 10px;
  }
}
.subjectBox dl .subjectItem dd ul li input {
  transform: scale(1.5);
  margin: 0 4px 0 0;
}
@media screen and (max-width: 767px) {
  .subjectBox dl .subjectItem dd ul li input {
    transform: none;
  }
}
.subjectBox .btn {
  transition: .2s;
}
.subjectBox .btn i {
  margin: 0 7px 0 0;
}
.companyList {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 70px;
}
.companyList dt {
  width: 330px;
  padding: 10px;
}
.companyList dd {
  width: calc(100% - 330px);
  padding: 10px;
}
.companyList.dlBorder {
  border-bottom: #666 1px dotted;
}
.companyList.dlBorder dt:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
.companyList.dlBorder dd:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
@media screen and (max-width: 767px) {
  .companyList.dlBorder dd:nth-of-type(n+2) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .companyList {
    display: block;
  }
}
.companyList dt {
  padding: 25px 55px;
}
@media screen and (max-width: 767px) {
  .companyList dt {
    width: 100%;
    padding: 10px 0 0;
    font-weight: bold;
  }
}
.companyList dd {
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .companyList dd {
    width: 100%;
    margin: 0;
    padding: 0 0 10px;
    word-break: keep-all;
  }
}
.gMap {
  height: 420px;
}
.gMap iframe {
  width: 100%;
  height: 420px;
}
.newsArea {
  padding: 50px 0 80px;
}
@media screen and (max-width: 1023px) {
  .newsArea {
    padding: 50px 10px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea {
    padding: 50px 0;
  }
}
.newsArea .newsItem {
  padding: 18px 0;
  border-bottom: #999 1px dotted;
}
.newsArea a {
  text-decoration: none;
}
.newsArea a.box {
  border: none;
}
.newsArea a.box:hover {
  background: rgba(0, 147, 208, 0.1);
  color: #000;
}
.tagArea {
  margin: 0 0 5px;
}

.newsArea dl dd div.fs16 {
  display: none;
}

@media screen and (max-width: 767px) {
  .tagArea {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -1%;
  }
}
.tagArea time {
  display: inline-flex;
  justify-content: center;
  padding: 4px 7px;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.2;
  background: #0093D0;
  color: #FFF;
  vertical-align: middle;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .tagArea time {
    width: 99%;
    margin: 0 0 5px;
  }
}
.tagArea span {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0 12px;
  line-height: 1.2;
  font-size: 1.6rem;
  vertical-align: middle;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .tagArea span {
    margin: 0 5px 5px 0;
  }
}
@media screen and (max-width: 767px) {
  .tagArea span.tag {
    width: 49%;
    margin: 0 1% 5px 0;
  }
}
.tagArea span.pref::before {
  margin: 0 5px 3px 0;
  content: '\f3c5';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 2.4rem;
  color: #0093D0;
}
.tag {
  display: inline-flex;
  justify-content: center;
  min-width: 75px;
  padding: 3px 7px;
  border-radius: 5px;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #FFF;
}
.tag.fulltime {
  background: #FF7500;
}
.tag.parttime {
  background: #D01F00;
}
.tag.physician {
  background: #1E70B3;
}
.tag.surgeon {
  background: #28A8A8;
}
.tag.other {
  background: #26AA30;
}
.tag.comprehensive {
  background: #AE39AB;
}
.flowList {
  align-items: center;
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  padding: 25px 3vw!important;
  background: #EBF1F3;
  list-style: none;
}
.flowList .flexText {
  flex: 1;
}
.flowList .flexImg {
  padding: 0 35px 0 0;
}
@media screen and (max-width: 767px) {
  .flowList .flexImg {
    padding: 0;
  }
}
.flowList .flexRight {
  order: 1;
  padding: 0 0 0 35px;
}
@media screen and (max-width: 767px) {
  .flowList .flexRight {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .flowList {
    display: none;
  }
}
.flowList li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 68px;
  height: 310px;
  padding: 5px 2%;
  border-radius: 10px;
  border: #0093D0 2px solid;
  background: #FFF;
  color: #0093D0;
  writing-mode: vertical-rl;
  list-style: none;
  line-height: 1;
  font-size: 2rem;
  position: relative;
}
.flowList li:nth-of-type(n + 2)::before {
  content: '\f30b';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 3.6rem;
  color: #0093D0;
  position: absolute;
  left: calc(-100% + 5px);
}
.flowBlock {
  padding: 30px 0 35px;
  border-bottom: #000 1px dotted;
}
.flowBlock h3 {
  margin: 0 0 10px;
  padding: 0;
  line-height: 1.2;
  border: none;
}
.flowBlock h3 strong {
  display: inline-block;
  width: 65px;
  text-align: right;
  padding: 0 17px 0 0;
  font-family: 'Roboto', sans-serif;
  font-size: 6.4rem;
  font-style: italic;
  color: #0093D0;
}
@media screen and (max-width: 767px) {
  .flowBlock h3 strong {
    width: auto;
    padding-right: 10px;
    text-align: left;
    font-size: 12vw;
  }
}
.flowBlock .flowText {
  padding: 0 0 0 85px;
}
@media screen and (max-width: 767px) {
  .flowBlock .flowText {
    padding: 0;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フォーム
+++++++++++++++++++++++++++++++++++++++++++ */
form em {
  display: inline-block;
  width: 90px;
  padding: 4px 0 3px;
  margin-top: 2px;
  line-height: 1;
  border-radius: 5px;
  text-align: center;
  background: #1E70B3;
  color: #FFF;
}
form em.req {
  background: #D01F00;
}
form .inquiryList {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 30px;
}
form .inquiryList dt {
  width: 400px;
  padding: 10px;
}
form .inquiryList dd {
  width: calc(100% - 400px);
  padding: 10px;
}
form .inquiryList.dlBorder {
  border-bottom: #666 1px dotted;
}
form .inquiryList.dlBorder dt:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
form .inquiryList.dlBorder dd:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
@media screen and (max-width: 767px) {
  form .inquiryList.dlBorder dd:nth-of-type(n+2) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  form .inquiryList {
    display: block;
  }
}
form .inquiryList dt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 20px 15px 20px 55px;
}
@media screen and (max-width: 767px) {
  form .inquiryList dt {
    width: 100%;
    padding: 10px 0 0;
    font-weight: bold;
  }
}
form .inquiryList dd {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  form .inquiryList dd {
    width: 100%;
    margin: 0;
    padding: 0 0 10px;
    word-break: keep-all;
  }
}
form .inquiryList dd input[type="text"],
form .inquiryList dd input[type="email"],
form .inquiryList dd input[type="tel"],
form .inquiryList dd select {
  margin: -10px 0;
}
.confirmArea dl dd {
  padding-left: 1em;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-weight: 400;
  font-size: 1.8rem;
  width: 100%;
  padding: 8px 10px;
  background: #E5F4FA;
  border: #1E70B3 2px solid;
}
@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    font-size: 3.6vw;
    padding: 2vw 4vw;
  }
}
input[type="radio"] {
  width: auto;
  padding: 0;
  background: none;
  transform: scale(1.5);
}
input[type="checkbox"] {
  width: auto;
  padding: 0;
  background: none;
  transform: scale(1.5);
}
input[type="submit"] {
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="button"] {
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="file"] {
  width: auto;
  padding: 0;
  background: none;
}
textarea {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-weight: 400;
  font-size: 1.8rem;
  width: 100%;
  padding: 8px 10px;
  background: #E5F4FA;
  border: #1E70B3 2px solid;
}
@media screen and (max-width: 767px) {
  textarea {
    font-size: 3.6vw;
    padding: 2vw 4vw;
  }
}
select {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-weight: 400;
  font-size: 1.8rem;
  width: 100%;
  padding: 8px 10px;
  background: #E5F4FA;
  border: #1E70B3 2px solid;
}
@media screen and (max-width: 767px) {
  select {
    font-size: 3.6vw;
    padding: 2vw 4vw;
  }
}
label {
  display: inline-block;
  cursor: pointer;
}
::-webkit-input-placeholder {
  color: #686868;
}
::-moz-placeholder {
  color: #686868;
}
::input-placeholder {
  color: #686868;
}
.inputL {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .inputL {
    width: 100%;
  }
}
.inputM {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .inputM {
    width: 80%;
  }
}
.inputS {
  width: 100px;
}
.inputSS {
  width: 60px;
}
.help {
  color: #666;
  font-size: 92.8%;
  vertical-align: middle;
}
.submit {
  margin: 30px 0 0;
  text-align: center;
}
.submit::after {
  content: '';
  display: block;
  clear: both;
}
.submit::after {
  content: '';
  display: block;
  clear: both;
}
.submit .btn {
  max-width: 300px;
  width: 49%;
}
@media screen and (max-width: 767px) {
  .submit .btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .submit .floatR,
  .submit .floatL {
    display: block;
    float: none;
    margin: 0 auto 30px;
  }
}
.telArea {
  padding: 150px 65px 30px;
}
@media screen and (max-width: 1023px) {
  .telArea {
    padding: 100px 10px 30px;
  }
}
.telArea .columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.telArea .columnBox  > * {
  display: block;
  width: 49%;
}
.telArea .columnBox::before,
.telArea .columnBox::after {
  content: '';
  order: 1;
  display: block;
  width: 49%;
}
@media screen and (max-width: 767px) {
  .telArea .columnBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .telArea .columnBox  > * {
    display: block;
    width: 100%;
  }
  .telArea .columnBox::before,
  .telArea .columnBox::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
  }
}
.telArea .columnBox > * {
  max-width: 460px;
  padding: 10px 0;
  border: #1E70B3 3px solid;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #1E70B3;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .telArea .columnBox > * {
    max-width: none;
    margin: 0 0 10px;
    padding: 15px 10px;
    font-size: 4.8vw;
    line-height: 1.2;
  }
}
.telArea .columnBox > * strong {
  font-size: 4.2rem;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 1023px) {
  .telArea .columnBox > * strong {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .telArea .columnBox > * strong {
    font-size: 8.4vw;
  }
}
.telArea .columnBox > * .small {
  display: inline-block;
  font-size: 2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .telArea .columnBox > * .small {
    font-size: 4vw;
  }
}
.telArea .columnBox > * .time {
  font-size: 1.8rem;
  color: #ff0000;
}
@media screen and (max-width: 767px) {
  .telArea .columnBox > * .time {
    font-size: 3.2vw;
  }
}
.telArea .columnBox > a:hover {
  background: #EEE;
}
.mw_wp_form .horizontal-item {
  display: inline-block;
  padding: 0 30px 0 0;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin: 0!important;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: #0093D0 3px solid;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  header {
    background: #FFF;
    z-index: auto;
    position: static;
  }
}
header::before {
  content: '';
  width: 100%;
  order: 3;
}
header .logo {
  display: flex;
  align-items: center;
  margin: 10px 10px 5px 22px;
  font-size: 1.4rem;
  order: 1;
  flex: 1;
}
@media screen and (max-width: 1023px) {
  header .logo {
    margin: 10px;
  }
}
header .logo img {
  width: 70px;
  margin: 0 7px 7px 0;
}
header .logo p {
  line-height: 1.2;
  flex: 1;
}
@media screen and (max-width: 767px) {
  header .logo p {
    display: none;
  }
}
header h1,
header strong {
  width: 302px;
  margin: 0 0 7px 17px;
  order: 4;
}
@media screen and (max-width: 1023px) {
  header h1,
  header strong {
    width: 100%;
    margin: 5px 10px;
  }
}
header .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 5px 8px 0 0;
  order: 2;
}
@media screen and (max-width: 1023px) {
  header .contact {
    margin-right: 70px;
  }
}
header .contact a {
  line-height: 1.2;
}
header .contact a[href^="tel:"] {
  color: #0093D0;
  font-style: italic;
  font-weight: bold;
  font-size: 2.4rem;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 1023px) {
  header .contact a[href^="tel:"] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    color: #FFF;
    background: #0093D0;
    text-decoration: none;
  }
  header .contact a[href^="tel:"] span {
    display: none;
  }
}
header .contact a.btnRegister {
  background: #FF7500;
  margin: 2px 0 0 7px;
  padding: 3px 12px;
  color: #FFF;
  border-radius: 20px;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  header .contact a.btnRegister {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    width: 120px;
    margin-left: 10px;
    padding: 8px 15px;
    border-radius: 40px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header .contact a.btnRegister {
    width: 85px;
    padding: 2px 12px;
  }
}
header .contact a.btnRegister:hover {
  background: #ff9133;
}
@media screen and (max-width: 1023px) {
  header .contact a.btnRegister i {
    font-size: 2rem;
    margin-right: 3px;
  }
}
header .contact a.btnRegister .free {
  padding: 0px 10px;
  border-radius: 20px;
  background: #FFF;
  color: #FF8B00;
  font-size: 1.4rem;
  vertical-align: 2px;
}
@media screen and (max-width: 1023px) {
  header .contact a.btnRegister .free {
    display: none;
  }
}
header .contact a.btnRecruit {
  background: #676767;
  margin: 0 0 0 7px;
  padding: 3px 12px;
  color: #FFF;
  border-radius: 20px;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  header .contact a.btnRecruit {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    width: 120px;
    margin-left: 10px;
    padding: 8px 15px;
    border-radius: 40px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header .contact a.btnRecruit {
    width: 85px;
    padding: 2px 12px;
  }
}
header .contact a.btnRecruit:hover {
  background: #818181;
}
@media screen and (max-width: 1023px) {
  header .contact a.btnRecruit i {
    font-size: 2rem;
    margin-right: 3px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
#gNav {
  margin: 3px 3px 0 3px;
  flex: 1;
  order: 5;
}
@media screen and (max-width: 1023px) {
  #gNav {
    width: 28rem;
    min-width: 0;
    margin: 0;
  }
}
#gNav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  #gNav ul {
    display: block;
    padding: 10px 10px;
  }
}
#gNav ul li {
  padding: 0 2px;
}
@media screen and (max-width: 1023px) {
  #gNav ul li {
    max-width: none;
    width: 100%;
    margin: 0 0 10px;
  }
}
#gNav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 20px;
  width: 100%;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 100px;
}
@media screen and (max-width: 1023px) {
  #gNav ul li a {
    max-width: none;
    color: #000;
    border: #999 1px solid;
  }
}
#gNav ul li a:hover,
#gNav ul li a.current,
#gNav ul li a.parentsLink {
  background: #0093D0;
  color: #FFF;
}
@media screen and (max-width: 1023px) {
  #gNav ul li a:hover,
  #gNav ul li a.current,
  #gNav ul li a.parentsLink {
    background: rgba(0, 0, 0, 0.3);
  }
}
#gNav ul li a.btn:hover {
  opacity: 1;
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
@media screen and (max-width: 1023px) {
  .drawer--right .drawer-nav {
    right: -28rem !important;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 28rem !important;
  }
  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
}
header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .drawer-toggle {
    display: block;
  }
}
header .drawer-nav {
  position: relative;
}
@media screen and (max-width: 1023px) {
  header .drawer-nav {
    z-index: 100;
    position: fixed;
    width: 28rem;
  }
}
header .drawer-nav .drawer-menu {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
header .drawer-hamburger {
  background: #666;
  z-index: 10000;
  width: 3rem;
  padding: 18px 15px 40px;
}
header .drawer-hamburger .drawer-text {
  white-space: nowrap;
  color: #FFF;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.1rem;
}
header .drawer-hamburger:hover {
  background: #666;
}
header .drawer-hamburger-icon {
  margin: 0;
  position: relative;
  top: 6px;
  background: #FFF;
  height: 4px;
}
header .drawer-hamburger-icon::before,
header .drawer-hamburger-icon::after {
  background: #FFF;
  height: 4px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  padding: 100px 0 0;
  text-align: center;
  background: #0093D0;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 50px 0 0;
  }
}
footer h2 {
  color: #FFF;
}
footer h2 img {
  width: 174px;
}
footer address {
  padding: 10px 0 0;
  font-style: normal;
}
footer nav {
  padding: 50px 0 30px;
}
@media screen and (max-width: 767px) {
  footer nav {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
}
footer nav ul li {
  display: inline-block;
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  footer nav ul li {
    display: block;
    width: 50%;
    margin: 0;
  }
}
footer nav ul li a {
  text-decoration: none;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  footer nav ul li a {
    display: block;
    padding: 10px 5px;
    font-size: 3.6vw;
  }
}
footer nav ul li a:hover {
  color: #FFF;
  text-decoration: underline;
}
footer .sns {
  padding: 0 0 25px;
}
footer .sns li {
  display: inline-block;
  margin: 0 25px;
  font-size: 3.6rem;
}
footer .pageTop {
  margin: 0 auto;
  width: 85px;
  height: 85px;
  padding-top: 60px;
  text-align: center;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
footer .pageTop:hover {
  color: #000;
}
footer .pageTop:hover::after {
  animation-play-state: paused;
  background: #000;
}
footer .pageTop::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  margin: auto;
  background: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  animation: pageTop 1.5s ease 0s infinite normal;
}
footer small {
  display: block;
  padding: 35px 0 30px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  footer small {
    font-size: 2.8vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パンくず
+++++++++++++++++++++++++++++++++++++++++++ */
#breadcrumbsList {
  height: 27px;
  margin: -27px 0 50px;
  padding: 0 20px;
  font-size: 1.6rem;
  line-height: normal;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #breadcrumbsList {
    display: none;
  }
}
#breadcrumbsList::before {
  content: '\f015';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #0093D0;
}
#breadcrumbsList a {
  font-weight: normal;
  text-decoration: none;
  color: #000;
}
#breadcrumbsList li {
  display: inline-block;
}
#breadcrumbsList li + li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #0093D0;
  margin: 0 3px 0 0px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #000;
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #D01F00;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a.link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7.5px;
  border-color: transparent transparent transparent #2DA7E0;
  margin: 0 3px 0 0;
  vertical-align: baseline;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
a[target^="_blank"]:not([class]) {
  text-decoration: none;
  border-bottom: #000 1px solid;
}
a[target^="_blank"]:not([class])::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 5px;
}
a[target^="_blank"]:not([class]):hover {
  border-bottom: none;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パンくず
+++++++++++++++++++++++++++++++++++++++++++ */
#breadcrumbsList {
  max-width: 1080px;
  height: 27px;
  margin: -27px auto 50px;
  padding: 0 20px;
  font-size: 1.6rem;
  line-height: normal;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #breadcrumbsList {
    display: none;
  }
}
#breadcrumbsList::before {
  content: '\f015';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #0093D0;
}
#breadcrumbsList a {
  font-weight: normal;
  text-decoration: none;
  color: #000;
}
#breadcrumbsList li {
  display: inline-block;
}
#breadcrumbsList li + li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #0093D0;
  margin: 0 3px 0 0px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（不特定のページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  display: block;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 23px rgba(0, 0, 0, 0.2);
}
.box.boxRed {
  background: #D99;
}
@media screen and (max-width: 767px) {
  .box {
    padding: 10px 15px;
  }
}
.photoFrame {
  box-sizing: border-box;
  padding: 6px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columnBox  > * {
  display: block;
  width: 49%;
}
.columnBox::before,
.columnBox::after {
  content: '';
  order: 1;
  display: block;
  width: 49%;
}
.columnBox.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columnBox.col3  > * {
  display: block;
  width: 32%;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
}
.columnBox.col4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columnBox.col4  > * {
  display: block;
  width: 24%;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .columnBox.col1_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .columnBox.col1_sp  > * {
    display: block;
    width: 100%;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
  }
  .columnBox.col2_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .columnBox.col2_sp  > * {
    display: block;
    width: 49%;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
  }
  .columnBox.col3_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .columnBox.col3_sp  > * {
    display: block;
    width: 32%;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
  }
}
.btn {
  background: #0093D0;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  border: none;
  cursor: pointer;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  width: 400px;
  height: 60px;
  font-size: 2.4rem;
}
.btn .fa {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
}
.btn:hover {
  color: #FFF;
  background: rgba(0, 147, 208, 0.9);
}
.btn_fulltime {
  background: #FF7500;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  border: none;
  cursor: pointer;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  width: 400px;
  height: 60px;
  font-size: 2.4rem;
}
.btn_fulltime .fa {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn_fulltime:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn_fulltime {
    width: 100%;
  }
}
.btn_fulltime:hover {
  color: #FFF;
  background: rgba(255, 117, 0, 0.9);
}
.btn_parttime {
  background: #D01F00;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  border: none;
  cursor: pointer;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  width: 400px;
  height: 60px;
  font-size: 2.4rem;
}
.btn_parttime .fa {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn_parttime:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn_parttime {
    width: 100%;
  }
}
.btn_parttime:hover {
  color: #FFF;
  background: rgba(208, 31, 0, 0.9);
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex .flexText {
  flex: 1;
}
.flex .flexImg {
  padding: 0 35px 0 0;
}
@media screen and (max-width: 767px) {
  .flex .flexImg {
    padding: 0;
  }
}
.flex .flexRight {
  order: 1;
  padding: 0 0 0 35px;
}
@media screen and (max-width: 767px) {
  .flex .flexRight {
    padding: 0;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #FCC !important;
}
.error {
  color: #F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center!important;
}
.texLeft {
  text-align: left!important;
}
.texRight {
  text-align: right!important;
}
@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 400!important;
}
.weightBold {
  font-weight: bold!important;
}
.floatL {
  float: left;
}
.floatR {
  float: right;
}
.imgL {
  float: left;
  margin: 0 1em 1em 0;
}
@media screen and (max-width: 767px) {
  .imgL {
    display: block;
    float: none;
    margin: 0 auto 1em;
  }
}
.imgR {
  float: right;
  margin: 0 0 1em 1em;
}
@media screen and (max-width: 767px) {
  .imgR {
    display: block;
    float: none;
    margin: 0 auto 1em;
  }
}
.boxCenter {
  display: block;
  margin: 0 auto;
}
.borderNone {
  border: none!important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #D01F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	font-size
+++++++++++++++++++++++++++++++++++++++++++ */
.fs10 {
  font-size: 1rem!important;
}
.fs11 {
  font-size: 1.1rem!important;
}
.fs12 {
  font-size: 1.2rem!important;
}
.fs13 {
  font-size: 1.3rem!important;
}
.fs14 {
  font-size: 1.4rem!important;
}
.fs15 {
  font-size: 1.5rem!important;
}
.fs16 {
  font-size: 1.6rem!important;
}
.fs17 {
  font-size: 1.7rem!important;
}
.fs18 {
  font-size: 1.8rem!important;
}
.fs19 {
  font-size: 1.9rem!important;
}
.fs20 {
  font-size: 2rem!important;
}
.fs21 {
  font-size: 2.1rem!important;
}
.fs22 {
  font-size: 2.2rem!important;
}
.fs23 {
  font-size: 2.3rem!important;
}
.fs24 {
  font-size: 2.4rem!important;
}
.fs25 {
  font-size: 2.5rem!important;
}
.fs26 {
  font-size: 2.6rem!important;
}
.fs27 {
  font-size: 2.7rem!important;
}
.fs28 {
  font-size: 2.8rem!important;
}
.fs29 {
  font-size: 2.9rem!important;
}
.fs30 {
  font-size: 3rem!important;
}
.fs32 {
  font-size: 3.2rem!important;
}
.fs34 {
  font-size: 3.4rem!important;
}
.fs36 {
  font-size: 3.6rem!important;
}
.fs38 {
  font-size: 3.8rem!important;
}
.fs40 {
  font-size: 4rem!important;
}
.fs42 {
  font-size: 4.2rem!important;
}
.fs44 {
  font-size: 4.4rem!important;
}
.fs46 {
  font-size: 4.6rem!important;
}
.fs48 {
  font-size: 4.8rem!important;
}
@media screen and (max-width: 767px) {
  .fs10_sp {
    font-size: 2vw!important;
  }
  .fs11_sp {
    font-size: 2.2vw!important;
  }
  .fs12_sp {
    font-size: 2.4vw!important;
  }
  .fs13_sp {
    font-size: 2.6vw!important;
  }
  .fs14_sp {
    font-size: 2.8vw!important;
  }
  .fs15_sp {
    font-size: 3vw!important;
  }
  .fs16_sp {
    font-size: 3.2vw!important;
  }
  .fs17_sp {
    font-size: 3.4vw!important;
  }
  .fs18_sp {
    font-size: 3.6vw!important;
  }
  .fs19_sp {
    font-size: 3.8vw!important;
  }
  .fs20_sp {
    font-size: 4vw!important;
  }
  .fs21_sp {
    font-size: 4.2vw!important;
  }
  .fs22_sp {
    font-size: 4.4vw!important;
  }
  .fs23_sp {
    font-size: 4.6vw!important;
  }
  .fs24_sp {
    font-size: 4.8vw!important;
  }
  .fs25_sp {
    font-size: 5vw!important;
  }
  .fs26_sp {
    font-size: 5.2vw!important;
  }
  .fs27_sp {
    font-size: 5.4vw!important;
  }
  .fs28_sp {
    font-size: 5.6vw!important;
  }
  .fs29_sp {
    font-size: 5.8vw!important;
  }
  .fs30_sp {
    font-size: 6vw!important;
  }
  .fs32_sp {
    font-size: 6.4vw!important;
  }
  .fs34_sp {
    font-size: 6.8vw!important;
  }
  .fs36_sp {
    font-size: 7.2vw!important;
  }
  .fs38_sp {
    font-size: 7.6vw!important;
  }
  .fs40_sp {
    font-size: 8vw!important;
  }
  .fs42_sp {
    font-size: 8.4vw!important;
  }
  .fs44_sp {
    font-size: 8.8vw!important;
  }
  .fs46_sp {
    font-size: 9.2vw!important;
  }
  .fs48_sp {
    font-size: 9.6vw!important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	margin
+++++++++++++++++++++++++++++++++++++++++++ */
.mt0 {
  margin-top: 0!important;
}
.mt5 {
  margin-top: 5px!important;
}
.mt10 {
  margin-top: 10px!important;
}
.mt15 {
  margin-top: 15px!important;
}
.mt20 {
  margin-top: 20px!important;
}
.mt25 {
  margin-top: 25px!important;
}
.mt30 {
  margin-top: 30px!important;
}
.mt35 {
  margin-top: 35px!important;
}
.mt40 {
  margin-top: 40px!important;
}
.mt45 {
  margin-top: 45px!important;
}
.mt50 {
  margin-top: 50px!important;
}
.mb0 {
  margin-bottom: 0!important;
}
.mb5 {
  margin-bottom: 5px!important;
}
.mb10 {
  margin-bottom: 10px!important;
}
.mb15 {
  margin-bottom: 15px!important;
}
.mb20 {
  margin-bottom: 20px!important;
}
.mb25 {
  margin-bottom: 25px!important;
}
.mb30 {
  margin-bottom: 30px!important;
}
.mb35 {
  margin-bottom: 35px!important;
}
.mb40 {
  margin-bottom: 40px!important;
}
.mb45 {
  margin-bottom: 45px!important;
}
.mb50 {
  margin-bottom: 50px!important;
}
.mr0 {
  margin-right: 0!important;
}
.mr5 {
  margin-right: 5px!important;
}
.mr10 {
  margin-right: 10px!important;
}
.mr15 {
  margin-right: 15px!important;
}
.mr20 {
  margin-right: 20px!important;
}
.mr25 {
  margin-right: 25px!important;
}
.mr30 {
  margin-right: 30px!important;
}
.mr35 {
  margin-right: 35px!important;
}
.mr40 {
  margin-right: 40px!important;
}
.mr45 {
  margin-right: 45px!important;
}
.mr50 {
  margin-right: 50px!important;
}
.ml0 {
  margin-left: 0!important;
}
.ml5 {
  margin-left: 5px!important;
}
.ml10 {
  margin-left: 10px!important;
}
.ml15 {
  margin-left: 15px!important;
}
.ml20 {
  margin-left: 20px!important;
}
.ml25 {
  margin-left: 25px!important;
}
.ml30 {
  margin-left: 30px!important;
}
.ml35 {
  margin-left: 35px!important;
}
.ml40 {
  margin-left: 40px!important;
}
.ml45 {
  margin-left: 45px!important;
}
.ml50 {
  margin-left: 50px!important;
}
@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px!important;
  }
  .mt5_sp {
    margin-top: 5px!important;
  }
  .mt10_sp {
    margin-top: 10px!important;
  }
  .mt15_sp {
    margin-top: 15px!important;
  }
  .mt20_sp {
    margin-top: 20px!important;
  }
  .mt25_sp {
    margin-top: 25px!important;
  }
  .mt30_sp {
    margin-top: 30px!important;
  }
  .mt35_sp {
    margin-top: 35px!important;
  }
  .mt40_sp {
    margin-top: 40px!important;
  }
  .mt45_sp {
    margin-top: 45px!important;
  }
  .mt50_sp {
    margin-top: 50px!important;
  }
  .mb0_sp {
    margin-bottom: 0px!important;
  }
  .mb5_sp {
    margin-bottom: 5px!important;
  }
  .mb10_sp {
    margin-bottom: 10px!important;
  }
  .mb15_sp {
    margin-bottom: 15px!important;
  }
  .mb20_sp {
    margin-bottom: 20px!important;
  }
  .mb25_sp {
    margin-bottom: 25px!important;
  }
  .mb30_sp {
    margin-bottom: 30px!important;
  }
  .mb35_sp {
    margin-bottom: 35px!important;
  }
  .mb40_sp {
    margin-bottom: 40px!important;
  }
  .mb45_sp {
    margin-bottom: 45px!important;
  }
  .mb50_sp {
    margin-bottom: 50px!important;
  }
  .mr0_sp {
    margin-right: 0px!important;
  }
  .mr5_sp {
    margin-right: 5px!important;
  }
  .mr10_sp {
    margin-right: 10px!important;
  }
  .mr15_sp {
    margin-right: 15px!important;
  }
  .mr20_sp {
    margin-right: 20px!important;
  }
  .mr25_sp {
    margin-right: 25px!important;
  }
  .mr30_sp {
    margin-right: 30px!important;
  }
  .mr35_sp {
    margin-right: 35px!important;
  }
  .mr40_sp {
    margin-right: 40px!important;
  }
  .mr45_sp {
    margin-right: 45px!important;
  }
  .mr50_sp {
    margin-right: 50px!important;
  }
  .ml0_sp {
    margin-left: 0px!important;
  }
  .ml5_sp {
    margin-left: 5px!important;
  }
  .ml10_sp {
    margin-left: 10px!important;
  }
  .ml15_sp {
    margin-left: 15px!important;
  }
  .ml20_sp {
    margin-left: 20px!important;
  }
  .ml25_sp {
    margin-left: 25px!important;
  }
  .ml30_sp {
    margin-left: 30px!important;
  }
  .ml35_sp {
    margin-left: 35px!important;
  }
  .ml40_sp {
    margin-left: 40px!important;
  }
  .ml45_sp {
    margin-left: 45px!important;
  }
  .ml50_sp {
    margin-left: 50px!important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
