@charset "UTF-8";
/* ================================================
common.css
================================================ */
/***************************************************
._keepButton - キープボタン
***************************************************/
._keepButton > .ul01 > li {
  display: none;
  width: 100%;
}

._keepButton > .ul01 > li > .-button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 15px 15px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px #d6d6d6;
  box-shadow: 0 1px 4px #d6d6d6;
}

._keepButton > .ul01 > li > .-button > span {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

._keepButton > .ul01 > li > .-button > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  width: 20px;
  height: 20px;
  background: url(../images/icon_003a.svgz) no-repeat;
  background-size: 20px;
}

._keepButton > .ul01 > li.js-kb-keep > .-button {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  ._keepButton > .ul01 > li.js-kb-keep > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  ._keepButton > .ul01 > li.js-kb-keep > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  ._keepButton > .ul01 > li.js-kb-keep > .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad ._keepButton > .ul01 > li.js-kb-keep > .-button:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad ._keepButton > .ul01 > li.js-kb-keep > .-button:hover:before {
  background-color: transparent !important;
}

._keepButton > .ul01 > li.js-kb-kept > .-button {
  color: #999;
  border-color: #ddd;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ddd;
}

._keepButton > .ul01 > li.js-kb-kept > .-button > span:before {
  background-image: url(../images/icon_003b.svgz);
}

._keepButton > .ul01 > li.js-kb-loading > .-button {
  cursor: default;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

._keepButton > .ul01 > li.js-kb-loading > .-button > span:before {
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
  background-image: url(../images/icon_001a.svgz);
}

._keepButton.is-keep > ul > li.js-kb-keep {
  display: block;
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  ._keepButton.is-keep > ul > li.js-kb-keep > a:hover:hover {
    opacity: 0.7;
  }
}

._keepButton.is-kept > ul > li.js-kb-kept {
  display: block;
}

._keepButton.is-loading > ul > li.js-kb-loading {
  display: block;
}

/***************************************************
._checkboxWithLink - サンプルテキスト
***************************************************/
._checkboxWithLink {
  display: block;
}

._checkboxWithLink__bg01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #e1d6c5;
}

._checkboxWithLink__bg01 > label > span {
  font-weight: 700;
}

._checkboxWithLink__bg01 > label:after {
  background-color: #fff;
}

._checkboxWithLink__bg01 > a {
  background: url(../images/arw_002b.svgz) center no-repeat;
  background-size: 12px;
}

._checkboxWithLink__bg02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}

._checkboxWithLink__bg02 > label:after {
  background-color: #e5e5e5;
}

._checkboxWithLink__bg02 > a {
  background: url(../images/arw_002a.svgz) center no-repeat;
  background-size: 12px;
}

._checkboxWithLink .-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

._checkboxWithLink .-checkbox > input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

._checkboxWithLink .-checkbox > input:checked + span:before {
  background: url(../images/bt_002b.svgz) no-repeat;
}

._checkboxWithLink .-checkbox > span {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}

._checkboxWithLink .-checkbox > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/bt_002a.svgz) no-repeat;
  background-size: 20px;
}

@media screen and (max-width: 767px) {
  ._checkboxWithLink .-checkbox {
    padding: 15px 10px;
  }
}

._checkboxWithLink .-checkbox:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 1px;
}

._checkboxWithLink a {
  display: block;
  width: 48px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  ._checkboxWithLink a:hover {
    opacity: 0.7;
  }
}

._boxBalloon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 6px 10px;
  color: #ff7f00;
  font-size: 12px;
  border: 1px solid #ff7f00;
  border-radius: 50px;
  background-color: #fff;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

._boxBalloon:not(:first-of-type) {
  margin-top: 15px;
}

._boxBalloon:last-of-type {
  margin-bottom: 10px;
}

._boxBalloon:before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #ff7f00 transparent transparent transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

._boxBalloon:after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

._boxBalloon > .div01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._boxBalloon > .div01 > .-tagWithText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

._boxBalloon > .div01 > .-tagWithText > .i01 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-right: 2px;
  width: 14px;
  height: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  z-index: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

._boxBalloon > .div01 > .-tagWithText > .i01:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #ff7f00;
  z-index: -1;
}

._boxBalloon > .div01 > .-tagWithText > .span01 {
  width: 100%;
}

._boxBalloon > .div01 > .-tagWithText > .i01 {
  padding: 2px;
  width: auto;
  height: auto;
  min-width: 14px;
  min-height: 14px;
  line-height: 1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

._boxBalloon > .div01 > .-tagWithText > .i01:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

._boxHappyBonus {
  display: block;
  position: relative;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border: 1px solid #f4dec6;
  border-radius: 4px;
  background-color: #fff8e0;
}

@media screen and (min-width: 768px) {
  ._boxHappyBonus {
    padding: 30px;
  }
}

._boxHappyBonus > .h01 {
  color: #ff7f00;
  font-size: 20px;
}

._boxHappyBonus > .h01 > span {
  font-size: 16px;
}

._boxHappyBonus > .p01 {
  margin-top: 5px;
  line-height: 1.4;
}

._boxHappyBonus > .div01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._boxHappyBonus > .div01 > .-tagWithText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  margin-left: 0;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
}

._boxHappyBonus > .div01 > .-tagWithText > .i01 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-right: 2px;
  width: 14px;
  height: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  z-index: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

._boxHappyBonus > .div01 > .-tagWithText > .i01:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #ff7f00;
  z-index: -1;
}

._boxHappyBonus > .div01 > .-tagWithText > .span01 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  ._boxHappyBonus > .div01 > .-tagWithText:not(:first-child) {
    margin-left: 23px;
  }
}

@media screen and (max-width: 767px) {
  ._boxHappyBonus > .div01 > .-tagWithText {
    padding-right: 25px;
  }
}

._boxHappyBonus > .div01 > .-tagWithText > .i01, ._boxHappyBonus > .div01 > .-tagWithText .i02 {
  margin-right: 5px;
  padding: 2px;
  width: auto;
  height: auto;
  min-width: 16px;
  min-height: 16px;
  color: #ff7f00;
  line-height: 1;
}

._boxHappyBonus > .div01 > .-tagWithText > .i01:after, ._boxHappyBonus > .div01 > .-tagWithText .i02:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
}

._boxHappyBonus > .div01 > .-tagWithText > .span01 {
  font-weight: 700;
}

._boxHappyBonus > .div02 {
  display: block;
  margin-top: 10px;
}

html.ipad ._boxHappyBonus > .div02 > a:hover {
  text-decoration: underline;
}

/***************************************************
._slider -
***************************************************/
._slider {
  visibility: hidden;
  position: relative;
  width: 100%;
  max-height: 342px;
}

._slider.slider-initialized {
  visibility: visible;
  max-height: none;
}

._slider > .js-slider-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}

._slider > .js-slider-wrapper > .js-slider-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 0;
  width: 10000px;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides.shifting {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides > .item {
  width: 100%;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides > .item > .figure {
  display: block;
  margin: 0;
  width: 100%;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides > .item > .figure > div {
  position: relative;
  padding-top: 75.385%;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides > .item > .figure > div > p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides > .item > .figure > div > p > .image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

._slider > .js-slider-wrapper > .js-slider-inner > .js-slider-slides > .item > .figure > .caption {
  margin-top: 5px;
  color: #999;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}

._slider > .js-slider-wrapper > .nav-control {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px 12px;
  z-index: 2;
}

._slider > .js-slider-wrapper > .nav-control.prev {
  left: -15px;
  background-image: url(../images/arw_002c.svgz);
}

._slider > .js-slider-wrapper > .nav-control.next {
  right: -15px;
  background-image: url(../images/arw_002d.svgz);
}

._slider > .slider-indicators {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

._slider > .slider-indicators > .item {
  position: relative;
  margin: 0 5px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #ddd;
}

@media screen and (min-width: 768px) {
  ._slider > .slider-indicators > .item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  ._slider > .slider-indicators > .item:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

._slider > .slider-indicators > .item.active {
  background: #ba955b;
}

._boxButton > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._boxButton > .ul01 > li {
  margin-top: 10px;
}

._boxButton > .ul01 > li.li01 {
  width: 100%;
}

._boxButton > .ul01 > li.li02 {
  margin-right: 10px;
  width: calc(50% - 5px);
}

._boxButton > .ul01 > li > .-buttonColor {
  display: block;
  overflow: hidden;
  padding: 16px 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px #e5e5e5;
  box-shadow: 0 1px 2px #e5e5e5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ba955b;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  ._boxButton > .ul01 > li > .-buttonColor:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  ._boxButton > .ul01 > li > .-buttonColor:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  ._boxButton > .ul01 > li > .-buttonColor:hover {
    -webkit-box-shadow: 0px 0px 10px 0px #2b0000;
    box-shadow: 0px 0px 10px 0px #2b0000;
  }
}

._boxButton > .ul01 > li > .-buttonColor.a01 {
  -webkit-box-shadow: 0 1px 2px #e5e5e5;
  box-shadow: 0 1px 2px #e5e5e5;
  background-color: #780000;
}

._boxButton > .ul01 > li > .-buttonColor.a02 {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

@media screen and (min-width: 768px) {
  ._boxButton > .ul01 > li > .-buttonColor.a02:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

._boxButton > .ul01 > li > .-buttonColor.a02 > span {
  position: relative;
  padding-left: 21px;
}

@media screen and (min-width: 768px) {
  ._boxButton > .ul01 > li > .-buttonColor.a02 > span:nth-child(2) {
    display: none;
  }
  ._boxButton > .ul01 > li > .-buttonColor.a02 > span:nth-child(1) {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  ._boxButton > .ul01 > li > .-buttonColor.a02 > span:nth-child(2) {
    display: inline-block;
  }
  ._boxButton > .ul01 > li > .-buttonColor.a02 > span:nth-child(1) {
    display: none;
  }
}

._boxButton > .ul01 > li > .-buttonColor.a02 > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: url(../images/icon_033a.svgz) no-repeat;
  background-size: 16px;
}

._boxButton > .ul01 > li:last-child {
  margin-right: 0px;
}

._boxButton > .ul01 .div02 .ul02 > li {
  display: none;
  width: 100%;
}

._boxButton > .ul01 .div02 .ul02 > li > .-button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 16px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  font-size: 16px;
  -webkit-box-shadow: 0 1px 4px #d6d6d6;
  box-shadow: 0 1px 4px #d6d6d6;
}

._boxButton > .ul01 .div02 .ul02 > li > .-button > span {
  display: inline-block;
  position: relative;
  padding-left: 21px;
}

._boxButton > .ul01 .div02 .ul02 > li > .-button > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: url(../images/icon_003a.svgz) no-repeat;
  background-size: 16px;
}

@media screen and (min-width: 768px) {
  ._boxButton > .ul01 .div02 .ul02 > li > .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

._boxButton > .ul01 .div02 .ul02 > li.js-kb-kept > .-button {
  color: #999;
  border-color: #ddd;
  cursor: default;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ddd;
}

._boxButton > .ul01 .div02 .ul02 > li.js-kb-kept > .-button > span:before {
  background-image: url(../images/icon_003b.svgz);
}

._boxButton > .ul01 .div02 .ul02 > li.js-kb-kept > .-button:hover {
  opacity: 1;
}

._boxButton > .ul01 .div02 .ul02 > li.js-kb-loading > .-button {
  cursor: default;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

._boxButton > .ul01 .div02 .ul02 > li.js-kb-loading > .-button > span:before {
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
  background-image: url(../images/icon_001a.svgz);
}

._boxButton > .ul01 .div02.is-keep > ul > li.js-kb-keep {
  display: block;
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  ._boxButton > .ul01 .div02.is-keep > ul > li.js-kb-keep > a:hover:hover {
    opacity: 0.7;
  }
}

._boxButton > .ul01 .div02.is-kept > ul > li.js-kb-kept {
  display: block;
}

._boxButton > .ul01 .div02.is-loading > ul > li.js-kb-loading {
  display: block;
}

/***************************************************
._routeSearchTag
***************************************************/
@media screen and (min-width: 768px) {
  ._routeSearchTag > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

._routeSearchTag > div > p {
  font-size: 12px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  ._routeSearchTag > div > p {
    padding-top: 6px;
    min-width: 50px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

@media screen and (min-width: 768px) {
  ._routeSearchTag > div > div {
    margin-top: -5px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

._routeSearchTag > div .span01 {
  display: inline-block;
  margin-top: 5px;
  padding: 4px 10px 4px 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  cursor: pointer;
  background-color: #fff;
}

._routeSearchTag > div .span01 > i {
  display: block;
  padding-left: 16px;
  font-style: normal;
  background: url(../images/bt_003a.svgz) left center no-repeat;
  background-size: 12px;
}

/***************************************************
._loading -
***************************************************/
._loading {
  margin: 10px auto 0;
  width: 30px;
  height: 30px;
  background: url(../images/icon_055a.gif) no-repeat;
}

@media screen and (min-width: 768px) {
  ._loading {
    margin-top: 15px;
  }
}

html.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

body {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  background-color: #f7f5f0;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

@media screen and (max-width: 767px) {
  body {
    font-family: -apple-system-subset,'Helvetica','Hiragino Kaku Gothic ProN',sans-serif;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Meiryo','Osaka','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  }
}

html, body, h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn,
blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer,
img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

hr {
  height: 0px;
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
}

img, a img {
  vertical-align: bottom;
  background: transparent;
}

object, embed {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6, p, li, dl, dt, dd, address, caption, th, td {
  word-wrap: break-word;
  word-break: break-all;
}

ul, ol, li {
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

a {
  color: #ba955b;
}

@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

html.ipad a:hover {
  text-decoration: none;
}

input, select, button, textarea {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', '游ゴシック' , '游ゴシック体' , YuGothic , 'Yu Gothic', 'メイリオ', 'Meiryo', sans-serif;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/***************************************************
.contents
***************************************************/
#contents {
  margin-bottom: 40px;
}

/***************************************************
.common-globalHeader
***************************************************/
.common-globalHeader {
  position: relative;
  z-index: 11;
}

.common-globalHeader__bg01 {
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.24);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__bg01 {
    padding: 0 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__bg01 {
    min-width: 1200px;
  }
}

.common-globalHeader__pt01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 {
    margin: 0 auto;
    padding: 0 15px;
    width: 1200px;
    height: 60px;
  }
}

.common-globalHeader__pt01 > .div01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 {
    position: relative;
    width: 240px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.common-globalHeader__pt01 > .div01 > .a01 > img {
  display: block;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > .a01 > img {
    width: 138px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > .a01 > img {
    width: 150px;
  }
}

.common-globalHeader__pt01 > .div01 > div {
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div {
    position: relative;
  }
}

@media screen and (max-width: 320px) {
  .common-globalHeader__pt01 > .div01 > div {
    margin-left: 5px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div {
    margin-left: 5px;
  }
}

.common-globalHeader__pt01 > .div01 > div > .button01 {
  display: inline-block;
  position: relative;
  padding: 5px 14px 4px 5px;
  color: #666;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .button01:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div01 > div > .button01:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .button01:before {
    content: '';
    position: absolute;
    top: 41px;
    left: 50%;
    width: 0;
    height: 0;
    border-width: 0 7.5px 10px 7.5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    z-index: 1;
  }
}

@media screen and (max-width: 320px) {
  .common-globalHeader__pt01 > .div01 > div > .button01 {
    padding: 4px 13px 4px 4px;
    font-size: 12px;
  }
  .common-globalHeader__pt01 > .div01 > div > .button01:after {
    right: 3px;
  }
}

html.ipad .common-globalHeader__pt01 > .div01 > div > .button01:hover:before {
  background-color: transparent !important;
}

.common-globalHeader__pt01 > .div01 > div > .button01:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 8px;
  height: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/arw_007a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 4px;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .button01.is-open:before {
    opacity: 1;
  }
}

.common-globalHeader__pt01 > .div01 > div > .button01.is-open:after {
  background-image: url(../images/arw_007b.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 {
  display: none;
  position: absolute;
  border-radius: 4px;
  background-color: #fff;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 {
    top: 65px;
    left: 0;
    overflow: auto;
    width: 100%;
    max-height: calc(100vh - 131px);
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 {
    top: 41px;
    left: -145px;
    width: 345px;
    -webkit-box-shadow: 0 1px 24px rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.16);
  }
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-width: 0 7.5px 10px 7.5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li {
  width: 33.333%;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li:nth-child(3n) {
  border-right: none;
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a {
  display: block;
  position: relative;
  padding: 14px 10px 5px;
  height: 72px;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

html.ipad .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a:hover:before {
  background-color: transparent !important;
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a > span {
  display: block;
  padding-top: 33px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 33px;
}

@media screen and (max-width: 320px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a > span {
    font-size: 12px;
  }
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a01 > span {
  background-image: url(../images/icon_010a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a02 > span {
  background-image: url(../images/icon_011a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a03 > span {
  background-image: url(../images/icon_012a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a04 > span {
  background-image: url(../images/icon_013a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a05 > span {
  background-image: url(../images/icon_014a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a06 > span {
  background-image: url(../images/icon_015a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a07 > span {
  background-image: url(../images/icon_016a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a08 > span {
  background-image: url(../images/icon_017a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul01 > li > a.a09 > span {
  background-image: url(../images/icon_018a.svgz);
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 15px 10px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: left;
    line-height: 1.2;
    border-radius: 0;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (max-width: 767px) {
  html.ipad .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:hover:before {
    background-color: transparent !important;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../images/bt_001a.svgz);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:after {
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion.is-open:after {
    background-image: url(../images/bt_001b.svgz);
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion + .js-accordion-box {
    display: none;
    overflow: hidden;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion + .js-accordion-box.is-open {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion {
    display: block;
    position: relative;
    padding: 13px 25px 13px 15px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  html.ipad .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:hover:before {
    background-color: transparent !important;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-buttonAccordion:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../images/arw_002a.svgz);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
  }
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow {
  display: block;
  position: relative;
  padding: 13px 25px 13px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow:hover:before {
  background-color: transparent !important;
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow > span {
  color: #666;
  font-size: 11px;
  font-weight: 400;
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/arw_002a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow {
    padding-left: 10px;
  }
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 > .ul02 > li .-linkArrow:after {
    right: 13px;
  }
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 .ul03 > li {
  border-top: 1px solid #e5e5e5;
}

.common-globalHeader__pt01 > .div01 > div > .div02 > .div03 .div04 {
  display: none;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div01 > div > .div02 > .div03 .div04.is-open {
    display: block;
  }
}

.common-globalHeader__pt01 > .div05 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 > .div06 {
    position: fixed;
    top: 0;
    left: 45px;
    overflow: auto;
    width: calc(100% - 45px);
    height: 100%;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    background-color: #fff;
    z-index: 16;
  }
  .common-globalHeader__pt01 > .div05 > .div06.is-open {
    -webkit-transform: none;
    transform: none;
  }
  .common-globalHeader__pt01 > .div05 > .div06.is-transition {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .div06 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 {
    padding-top: 80px;
    border-bottom: 1px solid #e5e5e5;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > p {
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 700;
    background-color: #efe8dd;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow {
    display: block;
    position: relative;
    padding: 11px 25px 11px 10px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (max-width: 767px) {
  html.ipad .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow:hover:before {
    background-color: transparent !important;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > span {
    color: #666;
    font-size: 11px;
    font-weight: 400;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 14px;
    width: 12px;
    height: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../images/arw_002a.svgz);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i {
    position: relative;
    padding-left: 23px;
    font-style: normal;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 18px;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i.i01:after {
    background-image: url(../images/icon_042b.svgz);
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i.i02:after {
    background-image: url(../images/icon_043c.svgz);
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i.i03:after {
    background-image: url(../images/icon_044b.svgz);
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i.i04:after {
    background-image: url(../images/icon_048a.svgz);
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i.i05:after {
    background-image: url(../images/icon_049a.svgz);
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i.i06:after {
    background-image: url(../images/icon_050a.svgz);
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow > i.i07:after {
    background-image: url(../images/icon_051a.svgz);
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 > div > .-linkArrow:not(:first-child) {
    border-top: 1px solid #e5e5e5;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a {
    display: block;
    position: relative;
    padding: 10px 0;
    height: 60px;
    min-width: 80px;
    color: #333;
    font-size: 10px;
    text-decoration: none;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  html.ipad .common-globalHeader__pt01 > .div05 > .div06 > .div07 a:hover:before {
    background-color: transparent !important;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a > p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 27px 10px 0;
    border-left: 1px solid #e5e5e5;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a > p:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-position: center;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a > p > span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 3px;
    left: 50%;
    margin-left: -2px;
    padding-left: 1px;
    width: 18px;
    height: 18px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50px;
    background-color: #f00;
    z-index: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a.a01 > p:after {
    background-image: url(../images/icon_042a.svgz);
    background-repeat: no-repeat;
    background-size: 20px 20px;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a.a02 > p:after {
    background-image: url(../images/icon_043a.svgz);
    background-repeat: no-repeat;
    background-size: 20px 20px;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a.a03 > p:after {
    background-image: url(../images/icon_044a.svgz);
    background-repeat: no-repeat;
    background-size: 18px 18px;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a.a04 > p:after {
    background-image: url(../images/icon_045a.svgz);
    background-repeat: no-repeat;
    background-size: 16px 18px;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .div07 a:last-child > p {
    border-right: 1px solid #e5e5e5;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .div07.-onlySp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .div07.-onlyPc {
    display: none;
  }
}

.common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 13px 17px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #eee;
  margin: 15px auto;
  width: calc(100% - 20px);
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose:hover:before {
  background-color: transparent !important;
}

.common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
}

.common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/icon_032a.svgz);
  background-repeat: no-repeat;
  background-size: 8px;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose.-onlySp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 > .div06 > .-buttonModalClose.-onlyPc {
    display: none;
  }
}

.common-globalHeader__pt01 > .div05 > .div06 + .js-header-btnGnaviClose {
  display: none;
  position: fixed;
  top: 25px;
  left: 10px;
  width: 26px;
  height: 26px;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  background: url(../images/icon_040a.svgz);
  background-size: 26px;
  z-index: 16;
}

.common-globalHeader__pt01 > .div05 > .div06 + .js-header-btnGnaviClose.is-open {
  display: block;
}

.common-globalHeader__pt01 > .div05 > .ul04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 > .ul04.-onlySp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 > .ul04.-onlyPc {
    display: none;
  }
}

.common-globalHeader__pt01 > .div05 > .ul04 > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 50px;
  color: #333;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

html.ipad .common-globalHeader__pt01 > .div05 > .ul04 > li > a:hover:before {
  background-color: transparent !important;
}

.common-globalHeader__pt01 > .div05 > .ul04 > li > a > p {
  position: relative;
  padding: 27px 5px 0;
  text-align: center;
}

.common-globalHeader__pt01 > .div05 > .ul04 > li > a > p:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 50%;
  width: 22px;
  height: 22px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-position: center;
}

.common-globalHeader__pt01 > .div05 > .ul04 > li > a > p > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 3px;
  left: 50%;
  margin-left: -2px;
  padding-left: 1px;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50px;
  background-color: #f00;
  z-index: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.common-globalHeader__pt01 > .div05 > .ul04 > li > a.a01 > p:after {
  background-image: url(../images/icon_043b.svgz);
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.common-globalHeader__pt01 > .div05 > .ul04 > li > a.a02 > p:after {
  background-repeat: no-repeat;
}

.common-globalHeader__pt01 > .div05 .ul05 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 .ul05 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5px;
    width: 100%;
    height: 80px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 {
    margin-left: 15px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li:not(:first-child) {
    margin-left: 5px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li {
    padding: 0 5px;
    width: 50%;
  }
}

.common-globalHeader__pt01 > .div05 .ul05 > li .p01 {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li .p01 {
    font-size: 10px;
  }
}

.common-globalHeader__pt01 > .div05 .ul05 > li .p02 {
  font-size: 14px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li .p02 {
    font-size: 10px;
    font-weight: 400;
  }
}

.common-globalHeader__pt01 > .div05 .ul05 > li .p02 > span {
  color: #780000;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li .p02 > span {
    font-size: 12px;
  }
}

.common-globalHeader__pt01 > .div05 .ul05 > li > .-button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 7px 5px;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button {
    padding: 14px 5px;
    width: 100%;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button {
    min-width: 90px;
  }
}

.common-globalHeader__pt01 > .div05 .ul05 > li > .-button.a01 {
  color: #780000;
  border: 1px solid #e5e5e5;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button.a01 {
    color: #fff;
    border: 1px solid #780000;
    background-color: #780000;
  }
}

.common-globalHeader__pt01 > .div05 .ul05 > li > .-button.a02 {
  border: 1px solid #e5e5e5;
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button.a02 {
    color: #fff;
    border: 1px solid #ba955b;
    background-color: #ba955b;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button.a02 span {
    position: relative;
    padding-left: 20px;
  }
  .common-globalHeader__pt01 > .div05 .ul05 > li > .-button.a02 span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
  }
}

.common-globalHeader__pattern-1 .common-globalHeader__pt01 .ul04 .a02 > p:after {
  background-image: url(../images/icon_047a.svgz);
  background-position: top 3px center;
  background-size: 18px 14px;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pattern-1 .common-globalHeader__pt01 .div07 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-1 .common-globalHeader__pt01 .div07 {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pattern-1 .common-globalHeader__pt01 .ul05 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-1 .common-globalHeader__pt01 .ul05 {
    position: initial;
    top: initial;
    left: initial;
    padding: 16px 5px 15px;
    height: auto;
  }
}

.common-globalHeader__pattern-1 .common-globalHeader__pt01 .ul05 > li .a02 {
  color: #ba955b;
  border: 1px solid #ba955b;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pattern-1 .common-globalHeader__pt01 .ul05 > li .a02 span:after {
    width: 14px;
    height: 14px;
    background-image: url(../images/icon_046a.svgz);
    background-size: 14px 14px;
  }
}

.common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul04 .a02 > p:after {
  width: 25px;
  background-image: url(../images/icon_047b.svgz);
  background-position: top 3px center;
  background-size: 25px;
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .div07 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .div07 {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 {
    position: initial;
    top: initial;
    left: initial;
    padding: 16px 5px 16px;
    height: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li:not(:first-child) {
    margin-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li .p02 > span {
    margin-right: 5px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li .a02 {
    color: #333;
    border: 1px solid #e5e5e5;
  }
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li .a02 span {
    padding-left: 20px;
  }
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li .a02 span:after {
    width: 13px;
    height: 12px;
    background-image: url(../images/icon_046b.svgz);
    background-size: 13px 12px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalHeader__pattern-2 .common-globalHeader__pt01 .ul05 > li .a02 {
    display: none;
  }
}

/***************************************************
.common-globalFooter
***************************************************/
@media screen and (max-width: 767px) {
  .common-globalFooter .-onlyPc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter .-onlySp {
    display: none;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__bg01 {
  background-color: #222;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__bg01 {
    padding: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__bg01 {
    display: none;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__bg02 {
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__bg02 {
    padding: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__bg02 {
    margin: 0 auto;
    min-width: 1200px;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__pt01 > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt01 > .ul01 > li {
  position: relative;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt01 > .ul01 > li > a {
  color: #999;
  font-size: 10px;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt01 > .ul01 > li > span {
  color: #999;
  font-size: 10px;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt01 > .ul01 > li:not(:last-child) {
  margin-right: 10px;
  padding-right: 15px;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt01 > .ul01 > li:not(:last-child):before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 7px;
  background-image: url(../images/arw_004a.svgz);
  background-repeat: none;
  background-size: 6px 7px;
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 {
    margin: 0 auto;
    padding: 40px 0 17px;
    width: 1170px;
    border-bottom: 1px solid #444;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__pt02 > .p01 {
  color: #999;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .p01 {
    padding: 15px 0 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 {
    overflow: hidden;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 {
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li {
    float: left;
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li:last-child > a {
    border-bottom: 1px solid #3e3e3e;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li > a {
  display: block;
  position: relative;
  color: #999;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li > a {
    padding: 10px 25px 10px 0;
    border-top: 1px solid #3e3e3e;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li > a {
    padding-right: 17px;
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li > a:hover {
    text-decoration: underline;
  }
}

html.ipad .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li > a:hover {
  text-decoration: none;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li > a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/arw_002f.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt02 > .ul01 > li > a:after {
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 {
    margin: 0 auto;
    padding: 20px 0 40px;
    width: 1170px;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 .p01 {
  margin-top: 10px;
  color: #999;
  font-size: 10px;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 .p01 {
    margin-top: 8px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div02 {
    margin-top: 10px;
    margin-right: -10px;
    margin-left: -10px;
    padding-top: 10px;
    border-top: 1px solid #3e3e3e;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div02 {
    width: 70px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div02 > figure {
  text-align: center;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div02 > figure a {
  display: inline-block;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div02 > figure img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div02 > figure img {
    width: 138px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div02 > figure img {
    width: 70px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 {
    padding: 15px 0;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 {
    padding-top: 10px;
    padding-left: 30px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 > .ul01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 > .ul01 {
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 > .ul01 > li {
    float: left;
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 > .ul01 > li {
    margin-top: 10px;
    width: 50%;
  }
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 > .ul01 > li > a {
  display: block;
  color: #999;
  font-size: 12px;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 > .ul01 > li > a.-linkExternal {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  display: block;
}

.common-globalFooter__pattern-1 .common-globalFooter__pt03 > .div01 > .div03 > .ul01 > li > a.-linkExternal:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_031a.svgz) no-repeat;
  background-size: 12px;
}

.common-globalFooter__pattern-2 .common-globalFooter__bg01,
.common-globalFooter__pattern-3 .common-globalFooter__bg01 {
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-2 .common-globalFooter__bg01,
  .common-globalFooter__pattern-3 .common-globalFooter__bg01 {
    padding: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-2 .common-globalFooter__bg01,
  .common-globalFooter__pattern-3 .common-globalFooter__bg01 {
    padding: 40px 15px;
    min-width: 1200px;
  }
}

.common-globalFooter__pattern-2 .common-globalFooter__pt01 > figure,
.common-globalFooter__pattern-3 .common-globalFooter__pt01 > figure {
  text-align: center;
}

.common-globalFooter__pattern-2 .common-globalFooter__pt01 > figure a,
.common-globalFooter__pattern-3 .common-globalFooter__pt01 > figure a {
  display: inline-block;
}

.common-globalFooter__pattern-2 .common-globalFooter__pt01 > figure img,
.common-globalFooter__pattern-3 .common-globalFooter__pt01 > figure img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-2 .common-globalFooter__pt01 > figure img,
  .common-globalFooter__pattern-3 .common-globalFooter__pt01 > figure img {
    width: 138px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-2 .common-globalFooter__pt01 > figure img,
  .common-globalFooter__pattern-3 .common-globalFooter__pt01 > figure img {
    width: 70px;
  }
}

.common-globalFooter__pattern-2 .common-globalFooter__pt01 > p,
.common-globalFooter__pattern-3 .common-globalFooter__pt01 > p {
  color: #999;
  font-size: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-2 .common-globalFooter__pt01 > p,
  .common-globalFooter__pattern-3 .common-globalFooter__pt01 > p {
    margin-top: 8px;
  }
}

@media screen and (min-width: 768px) {
  .common-globalFooter__pattern-2 .common-globalFooter__pt01 > p,
  .common-globalFooter__pattern-3 .common-globalFooter__pt01 > p {
    margin-top: 12px;
  }
}

@media screen and (max-width: 767px) {
  .common-globalFooter__pattern-2 .common-globalFooter__pt01 > p > span,
  .common-globalFooter__pattern-3 .common-globalFooter__pt01 > p > span {
    display: none;
  }
}

/***************************************************
.common-scrollTop
***************************************************/
.common-scrollTop__pattern-1.sp-1 {
  padding: 10px 10px 0;
}

.common-scrollTop__pt01 .-button01 {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 15px 10px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}

/***************************************************
.common-sectionLine
***************************************************/
@media screen and (max-width: 767px) {
  .common-sectionLine__pattern-1.sp-1 {
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-sectionLine__pattern-1.sp-1 {
    margin-top: 20px;
  }
}

.common-sectionLine__pt01 .-sectionLine {
  margin: 0;
  height: 1px;
  border: none;
  background-color: #e5e5e5;
}

/***************************************************
.common-jobCard
***************************************************/
.common-jobCard__pattern-2 {
  position: relative;
}

.common-jobCard__pattern-4 {
  position: relative;
}

.common-jobCard .common-jobCard__pattern-1.sp-1,
.common-jobCard .common-jobCard__pattern-2.sp-1,
.common-jobCard .common-jobCard__pattern-3.sp-1,
.common-jobCard .common-jobCard__pattern-4.sp-1,
.common-jobCard .common-jobCard__pattern-5.sp-1 {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .common-jobCard .common-jobCard__pattern-1.sp-1,
  .common-jobCard .common-jobCard__pattern-2.sp-1,
  .common-jobCard .common-jobCard__pattern-3.sp-1,
  .common-jobCard .common-jobCard__pattern-4.sp-1,
  .common-jobCard .common-jobCard__pattern-5.sp-1 {
    margin-top: 10px;
    padding: 0 10px;
  }
}

.common-jobCard__bg01 {
  position: relative;
  padding: 10px;
  min-height: 227px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  background: #fff;
}

@media screen and (min-width: 768px) {
  .common-jobCard__bg01 {
    padding: 20px;
    min-height: 359px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__in {
    min-height: 255px;
  }
}

.common-jobCard__pt01 > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2px;
  margin-bottom: 9px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt01 > .ul01 {
    padding-left: 440px;
  }
}

.common-jobCard__pt01 > .ul01 > li {
  margin-bottom: 4px;
  padding: 0 2px;
}

.common-jobCard__pt01 > .ul01 span {
  display: block;
  position: relative;
  padding: 1px 5px;
  font-size: 10px;
  text-align: center;
  border: 1px solid;
  border-radius: 100px;
}

.common-jobCard__pt01 > .ul01 .span01 {
  color: #fff;
  border-color: #f00;
  background-color: #f00;
}

.common-jobCard__pt01 > .ul01 .span02 {
  color: #c39143;
  border-color: #c39143;
  background-color: #fff;
}

.common-jobCard__pt01 > .ul01 .span03 {
  color: #c39143;
  border-color: #c39143;
  background-color: #fff;
}

.common-jobCard__pt01 > .ul01 .span03 .i01 {
  display: block;
  position: relative;
  padding-left: 12px;
  font-style: normal;
}

.common-jobCard__pt01 > .ul01 .span03 .i01:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(../images/icon_002a.svgz) no-repeat;
  background-size: 10px;
}

.common-jobCard__pt01 > .ul01 .span04 {
  color: #ff7f00;
  border-color: #ff7f00;
}

.common-jobCard__pt02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.common-jobCard__pt02 > .figure01 {
  width: 110px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt02 > .figure01 {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 425px;
  }
}

.common-jobCard__pt02 > .figure01 > img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt02 > .figure01 > img {
    width: 425px;
    height: 319px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.common-jobCard__pt02 > .div01 {
  margin-bottom: 6px;
  padding-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt02 > .div01 {
    padding-left: 440px;
  }
}

@media screen and (max-width: 767px) {
  .common-jobCard__pt02 > .div01 {
    margin-top: -2px;
  }
}

.common-jobCard__pt02 > .div01 .p01 {
  font-size: 14px;
}

.common-jobCard__pt02 > .div01 > .p02 {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .common-jobCard__pt02 > .div01 > .p02 {
    /* stylelint-disable */
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* stylelint-enable */
  }
}

.common-jobCard__pt02 > .div01 .h01 {
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt02 > .div01 .h01 {
    font-size: 18px;
  }
}

.common-jobCard__pt02 > .div01 .h01 > a {
  color: #ba955b;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt02 > .div01 .h01 > a:hover {
    text-decoration: none;
  }
}

html.ipad .common-jobCard__pt02 > .div01 .h01 > a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt03 {
    padding-left: 440px;
  }
}

.common-jobCard__pt03 .ul01 > li > p {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
}

.common-jobCard__pt03 .ul01 > li > p:before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 12px;
}

.common-jobCard__pt03 .ul01 .ul02 {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
}

.common-jobCard__pt03 .ul01 .ul02:before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/icon_005a.svgz);
  background-repeat: no-repeat;
  background-size: 12px;
}

.common-jobCard__pt03 .ul01 .ul02:before {
  background-image: url(../images/icon_005a.svgz);
}

.common-jobCard__pt03 .ul01 .-tagWithText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0;
  font-size: 14px;
  font-weight: 400;
}

.common-jobCard__pt03 .ul01 .-tagWithText > .i01 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-right: 2px;
  width: 14px;
  height: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  z-index: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-jobCard__pt03 .ul01 .-tagWithText > .i01:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #ff7f00;
  z-index: -1;
}

.common-jobCard__pt03 .ul01 .-tagWithText > .span01 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt03 .ul01 .-tagWithText {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 10px;
  }
}

.common-jobCard__pt03 .ul01 .-tagWithText > .i01 {
  margin-right: 3px;
  padding: 2px;
  width: auto;
  min-width: 14px;
  min-height: 14px;
  color: #ba955b;
  line-height: 1;
}

.common-jobCard__pt03 .ul01 .-tagWithText > .i01:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #f8efe1;
}

.common-jobCard__pt03 .ul01 .-tagWithText > .span01 {
  padding-top: 1px;
}

.common-jobCard__pt03 .ul01 .p01:before {
  background-image: url(../images/icon_004a.svgz);
}

.common-jobCard__pt03 .ul01 .p03:before {
  background-image: url(../images/icon_006a.svgz);
}

.common-jobCard__pt03 > .div01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt03 > .div01 {
    margin-right: -2.5px;
    margin-left: -2.5px;
  }
}

.common-jobCard__pt03 > .div01 .-tag {
  display: inline-block;
  position: relative;
  padding: 2px 5px;
  color: #A08150;
  font-size: 11px;
  text-align: center;
  border: 1px solid #F7F3E9;
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  padding: 0 4px;
  height: 21px;
  min-width: 75px;
  line-height: 1;
  border: 0.5px solid #ba955b;
  background-color: #faf3e3;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pt03 > .div01 .-tag {
    margin-right: 2.5px;
    margin-left: 2.5px;
    width: 93px;
  }
}

@media screen and (max-width: 767px) {
  .common-jobCard__pt03 > .div01 .-tag {
    margin-left: 5px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-3 .common-jobCard__bg01,
  .common-jobCard__pattern-4 .common-jobCard__bg01 {
    min-height: 1px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-3 .common-jobCard__pt03 > .div01,
  .common-jobCard__pattern-4 .common-jobCard__pt03 > .div01 {
    margin-right: -6px;
    margin-left: -6px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-3 .common-jobCard__pt03 > .div01 .-tag,
  .common-jobCard__pattern-4 .common-jobCard__pt03 > .div01 .-tag {
    margin-right: 6px;
    margin-left: 6px;
  }
}

.common-jobCard__pattern-1 .common-jobCard__pt04,
.common-jobCard__pattern-3 .common-jobCard__pt04,
.common-jobCard__pattern-5 .common-jobCard__pt04 {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-1 .common-jobCard__pt04,
  .common-jobCard__pattern-3 .common-jobCard__pt04,
  .common-jobCard__pattern-5 .common-jobCard__pt04 {
    margin-top: 15px;
    padding-left: 440px;
  }
}

.common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01,
.common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01,
.common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}

.common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li,
.common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li,
.common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li {
  padding: 0 5px;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li,
  .common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li,
  .common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li {
    width: 200px;
  }
}

.common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li > .-button,
.common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li > .-button,
.common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li > .-button {
  display: block;
  overflow: hidden;
  padding: 15px 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px #2b0000;
  box-shadow: 0 1px 2px #2b0000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #780000;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li > .-button:before,
  .common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li > .-button:before,
  .common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li > .-button:hover:before,
  .common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li > .-button:hover:before,
  .common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li > .-button:hover,
  .common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li > .-button:hover,
  .common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li > .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(43, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 2px rgba(43, 0, 0, 0.3);
  }
}

html.ipad .common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li > .-button:hover, html.ipad
.common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li > .-button:hover, html.ipad
.common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li > .-button:hover {
  -webkit-box-shadow: 0 1px 2px #2b0000 !important;
  box-shadow: 0 1px 2px #2b0000 !important;
}

html.ipad .common-jobCard__pattern-1 .common-jobCard__pt04 > .ul01 > li > .-button:hover:before, html.ipad
.common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01 > li > .-button:hover:before, html.ipad
.common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 > li > .-button:hover:before {
  background-color: transparent !important;
}

.common-jobCard__pattern-2 .common-jobCard__pt04,
.common-jobCard__pattern-4 .common-jobCard__pt04 {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt04,
  .common-jobCard__pattern-4 .common-jobCard__pt04 {
    margin-top: 15px;
    padding-left: 440px;
  }
}

.common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01,
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}

.common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li,
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li {
  padding: 0 5px;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li {
    width: 200px;
  }
}

.common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button01,
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button01 {
  display: block;
  overflow: hidden;
  padding: 16px 5px;
  color: #ba955b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px #d6d6d6;
  box-shadow: 0 1px 3px #d6d6d6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button01:before,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button01:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button01:hover:before,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button01:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button01:hover,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button01:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button01:hover, html.ipad
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button01:hover {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button01:hover:before, html.ipad
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button01:hover:before {
  background-color: transparent !important;
}

.common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button02,
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button02 {
  display: block;
  overflow: hidden;
  padding: 16px 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px #2b0000;
  box-shadow: 0 1px 2px #2b0000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #780000;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button02:before,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button02:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button02:hover:before,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button02:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button02:hover,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button02:hover {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(43, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 2px rgba(43, 0, 0, 0.3);
  }
}

html.ipad .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button02:hover, html.ipad
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button02:hover {
  -webkit-box-shadow: 0 1px 2px #2b0000 !important;
  box-shadow: 0 1px 2px #2b0000 !important;
}

html.ipad .common-jobCard__pattern-2 .common-jobCard__pt04 > .ul01 > li > .button02:hover:before, html.ipad
.common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 > li > .button02:hover:before {
  background-color: transparent !important;
}

.common-jobCard__pt05 {
  text-align: right;
}

.common-jobCard__pt05 > .p01 {
  margin-top: 4px;
  color: #999;
  font-size: 10px;
}

.common-jobCard__pattern-2 .common-jobCard__pt06,
.common-jobCard__pattern-4 .common-jobCard__pt06 {
  position: absolute;
  top: -5px;
  right: 5px;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt06,
  .common-jobCard__pattern-4 .common-jobCard__pt06 {
    top: -5px;
    right: -5px;
  }
}

.common-jobCard__pattern-2 .common-jobCard__pt06 .button03,
.common-jobCard__pattern-4 .common-jobCard__pt06 .button03 {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #999;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt06 .button03:before,
  .common-jobCard__pattern-4 .common-jobCard__pt06 .button03:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-jobCard__pattern-2 .common-jobCard__pt06 .button03:hover:before,
  .common-jobCard__pattern-4 .common-jobCard__pt06 .button03:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

.common-jobCard__pattern-2 .common-jobCard__pt06 .button03:after,
.common-jobCard__pattern-4 .common-jobCard__pt06 .button03:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  background: url(../images/icon_040a.svgz) left center no-repeat;
  background-size: 12px;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-2 .common-jobCard__pt06 .button03:hover,
  .common-jobCard__pattern-4 .common-jobCard__pt06 .button03:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-jobCard__pattern-2 .common-jobCard__pt06 .button03:hover, html.ipad
.common-jobCard__pattern-4 .common-jobCard__pt06 .button03:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-jobCard__pattern-2 .common-jobCard__pt06 .button03:hover:before, html.ipad
.common-jobCard__pattern-4 .common-jobCard__pt06 .button03:hover:before {
  background-color: transparent !important;
}

.common-jobCard__pattern-3 .common-jobCard__pt01 > .ul01,
.common-jobCard__pattern-3 .common-jobCard__pt02 > .div01,
.common-jobCard__pattern-3 .common-jobCard__pt03,
.common-jobCard__pattern-4 .common-jobCard__pt01 > .ul01,
.common-jobCard__pattern-4 .common-jobCard__pt02 > .div01,
.common-jobCard__pattern-4 .common-jobCard__pt03 {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-3 .common-jobCard__pt04,
  .common-jobCard__pattern-4 .common-jobCard__pt04 {
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-3 .common-jobCard__pt04 > .ul01,
  .common-jobCard__pattern-4 .common-jobCard__pt04 > .ul01 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-5 .common-jobCard__pt02 > .figure01 {
    width: 260px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-5 .common-jobCard__pt02 > .figure01 > img {
    width: 260px;
    height: 195px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-5 .common-jobCard__pt02 > .div01 {
    padding-left: 275px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-5 .common-jobCard__pt03,
  .common-jobCard__pattern-5 .common-jobCard__pt04 {
    padding-left: 275px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-5 .common-jobCard__pt04 > .ul01 {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-5 .common-jobCard__in {
    min-height: 160px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobCard__pattern-5 .common-jobCard__bg01 {
    min-height: 265px;
  }
}

/***************************************************
.common-pageTitle
***************************************************/
.common-pageTitle .common-pageTitle__pattern-1.sp-1,
.common-pageTitle .common-pageTitle__pattern-3.sp-1 {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .common-pageTitle .common-pageTitle__pattern-1.sp-1,
  .common-pageTitle .common-pageTitle__pattern-3.sp-1 {
    padding: 0 15px;
  }
}

@media screen and (min-width: 768px) {
  .common-pageTitle .common-pageTitle__pattern-1.sp-1,
  .common-pageTitle .common-pageTitle__pattern-3.sp-1 {
    margin-bottom: 15px;
  }
}

.common-pageTitle__pattern-1 .common-pageTitle__pt01 > .-heading01 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
}

.common-pageTitle__pattern-1 .common-pageTitle__pt01 > .-heading01 > span {
  padding-left: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-pageTitle__pattern-1 .common-pageTitle__pt01 > .-heading01 {
    font-size: 30px;
  }
  .common-pageTitle__pattern-1 .common-pageTitle__pt01 > .-heading01 > span {
    font-size: 20px;
  }
}

.common-pageTitle .common-pageTitle__pattern-2.sp-1 {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .common-pageTitle .common-pageTitle__pattern-2.sp-1 {
    padding: 0 15px;
  }
}

@media screen and (min-width: 768px) {
  .common-pageTitle .common-pageTitle__pattern-2.sp-1 {
    margin-bottom: 15px;
  }
}

.common-pageTitle .common-pageTitle__pattern-2 .common-pageTitle__pt01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-pageTitle .common-pageTitle__pattern-2 .common-pageTitle__pt01 > .a01 {
  position: relative;
  margin-right: 15px;
  padding-left: 18px;
  font-weight: bold;
}

.common-pageTitle .common-pageTitle__pattern-2 .common-pageTitle__pt01 > .a01:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-49%) rotate(180deg);
  transform: translateY(-49%) rotate(180deg);
  background: url(../images/arw_002a.svgz) no-repeat;
}

.common-pageTitle .common-pageTitle__pattern-2 .common-pageTitle__pt01 > .-heading01 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
}

.common-pageTitle .common-pageTitle__pattern-2 .common-pageTitle__pt01 > .-heading01 > span {
  padding-left: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-pageTitle .common-pageTitle__pattern-2 .common-pageTitle__pt01 > .-heading01 {
    font-size: 30px;
  }
  .common-pageTitle .common-pageTitle__pattern-2 .common-pageTitle__pt01 > .-heading01 > span {
    font-size: 20px;
  }
}

.common-pageTitle__pattern-3 .common-pageTitle__pt01 > .-heading01 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
}

.common-pageTitle__pattern-3 .common-pageTitle__pt01 > .-heading01 > span {
  padding-left: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-pageTitle__pattern-3 .common-pageTitle__pt01 > .-heading01 {
    font-size: 28px;
  }
  .common-pageTitle__pattern-3 .common-pageTitle__pt01 > .-heading01 > span {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .common-pageTitle .-onlySp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .common-pageTitle .-onlyPc {
    display: none;
  }
}

/***************************************************
.common-breadcrumb
***************************************************/
@media screen and (max-width: 767px) {
  .common-breadcrumb {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .common-breadcrumb {
    margin: 0 auto;
    padding: 0 15px;
    width: 1200px;
  }
}

@media screen and (max-width: 767px) {
  .common-breadcrumb__pattern-1.sp-1 {
    padding: 0 15px;
  }
}

@media screen and (min-width: 768px) {
  .common-breadcrumb__pattern-1.sp-1 {
    margin-top: 10px;
  }
}

.common-breadcrumb__pt01 > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}

.common-breadcrumb__pt01 > .ul01 > li {
  position: relative;
}

.common-breadcrumb__pt01 > .ul01 > li > a {
  color: #ba955b;
  font-size: 10px;
}

.common-breadcrumb__pt01 > .ul01 > li > span {
  color: #999;
  font-size: 10px;
}

.common-breadcrumb__pt01 > .ul01 > li:not(:last-child) {
  margin-right: 5px;
  padding-right: 11px;
}

.common-breadcrumb__pt01 > .ul01 > li:not(:last-child):before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 7px;
  background-image: url(../images/arw_004a.svgz);
  background-repeat: none;
  background-size: 6px 7px;
}

/***************************************************
.common-modalPrefecture
***************************************************/
.common-modalPrefecture {
  display: none;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture {
    margin: auto;
    padding: 30px;
    width: 830px;
    height: 714px;
    max-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .common-modalPrefecture {
    width: 100%;
    height: 100%;
  }
}

.common-modalPrefecture__pattern-1 {
  height: 100%;
}

.common-modalPrefecture__pattern-2 {
  height: 100%;
}

.common-modalPrefecture__bg01 {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__bg01 {
    border-radius: 4px;
  }
}

.common-modalPrefecture__pt01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.common-modalPrefecture__pt01 > .-modalHeading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px 15px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-modalPrefecture__pt01 > .-modalHeading {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalPrefecture__pt01 > .-modalHeading > h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.common-modalPrefecture__pt01 > .-modalHeading > .-modalCloseBtn {
  position: absolute;
  top: 50%;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pt01 > .-modalHeading > .-modalCloseBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalPrefecture__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalPrefecture__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 10px;
  }
}

.common-modalPrefecture__pt01 > .-modalHeading > .-modalCloseBtn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_028a.svgz) no-repeat;
}

html.ipad .common-modalPrefecture__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
  background-color: transparent !important;
}

.common-modalPrefecture__pt01.hide-heading > .-modalHeading {
  display: none;
}

.common-modalPrefecture__pt01.hide-heading + .common-modalPrefecture__pt02 {
  padding-top: 0;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 {
  padding-top: 50px;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 {
    padding-bottom: 30px;
  }
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .div01 {
  overflow: auto;
  max-height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .div01 {
    padding: 0 30px;
  }
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .p01 {
  padding: 15px 10px 0;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .p01 {
    padding: 27px 0 0;
  }
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 {
  margin-top: 15px;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 17px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  line-height: 1.2;
  border-radius: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EFE8DD;
  margin-bottom: 1px;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion:hover:before {
  background-color: transparent !important;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

@media screen and (max-width: 767px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion:after {
    right: 10px;
  }
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion.is-open:after {
  background-image: url(../images/bt_001b.svgz);
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion + .js-accordion-box {
  display: none;
  overflow: hidden;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion + .js-accordion-box.is-open {
  display: block;
}

@media screen and (max-width: 767px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li > .-buttonAccordion.is-open {
  margin-bottom: 0;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 {
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
  }
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li {
  width: 50%;
  border-bottom: 1px solid #e5e5e5;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li:last-child, .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li:nth-child(2n-1) {
  border-right: 1px solid #e5e5e5;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li .-linkArrow {
  display: block;
  position: relative;
  padding: 14px 25px 14px 15px;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li .-linkArrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li .-linkArrow:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li .-linkArrow:hover:before {
  background-color: transparent !important;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li .-linkArrow > span {
  color: #666;
  font-size: 11px;
  font-weight: 400;
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li .-linkArrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/arw_002a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

@media screen and (max-width: 767px) {
  .common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li .ul02 > li .-linkArrow {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalPrefecture__pattern-1 .common-modalPrefecture__pt02 .ul01 > li:last-child .ul02 {
  border-bottom: 1px solid #e5e5e5;
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 {
  padding-top: 50px;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 {
    padding-bottom: 30px;
  }
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .div01 {
  overflow: auto;
  max-height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .div01 {
    padding: 0 30px;
  }
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .p01 {
  padding: 15px 15px 0;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .p01 {
    padding: 27px 0 0;
  }
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  border: 1px solid #e5e5e5;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li:last-child {
  border-bottom: none;
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li .-linkArrow {
  display: block;
  position: relative;
  padding: 14px 25px 14px 15px;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li .-linkArrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li .-linkArrow:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li .-linkArrow:hover:before {
  background-color: transparent !important;
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li .-linkArrow > span {
  color: #666;
  font-size: 11px;
  font-weight: 400;
}

.common-modalPrefecture__pattern-2 .common-modalPrefecture__pt02 .ul01 > li .-linkArrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/arw_002a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/***************************************************
.common-modalArea
***************************************************/
.common-modalArea {
  display: none;
}

@media screen and (min-width: 768px) {
  .common-modalArea {
    margin: auto;
    padding: 30px;
    width: 830px;
    height: 714px;
    max-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .common-modalArea {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea .-onlySp {
    display: none;
  }
}

.common-modalArea__pattern-1 {
  height: 100%;
}

.common-modalArea__bg01 {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalArea__bg01 {
    border-radius: 4px;
  }
}

.common-modalArea__pt01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.common-modalArea__pt01 > .-modalHeading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px 15px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt01 > .-modalHeading {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalArea__pt01 > .-modalHeading > h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.common-modalArea__pt01 > .-modalHeading > .-modalCloseBtn {
  position: absolute;
  top: 50%;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt01 > .-modalHeading > .-modalCloseBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalArea__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 10px;
  }
}

.common-modalArea__pt01 > .-modalHeading > .-modalCloseBtn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_028a.svgz) no-repeat;
}

html.ipad .common-modalArea__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
  background-color: transparent !important;
}

.common-modalArea__pt01 > .-modalHeading > .-modalHeadingBtn {
  display: block;
  position: absolute;
  top: 50%;
  padding: 2px 10px;
  color: #ba955b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt01 > .-modalHeading > .-modalHeadingBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalArea__pt01 > .-modalHeading > .-modalHeadingBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt01 > .-modalHeading > .-modalHeadingBtn {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt01 > .-modalHeading > .-modalHeadingBtn {
    right: 10px;
  }
}

html.ipad .common-modalArea__pt01 > .-modalHeading > .-modalHeadingBtn:hover:before {
  background-color: transparent !important;
}

@media screen and (max-width: 320px) {
  .common-modalArea__pt01 > .-modalHeading > .-modalHeadingBtn {
    padding-right: 3px;
    padding-left: 3px;
    font-size: 10px;
  }
}

.common-modalArea__pt01 > .-tabModalSearch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.common-modalArea__pt01 > .-tabModalSearch > li {
  width: 50%;
}

.common-modalArea__pt01 > .-tabModalSearch > li > span,
.common-modalArea__pt01 > .-tabModalSearch > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-height: 50px;
  color: #999;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt01 > .-tabModalSearch > li > span:hover,
  .common-modalArea__pt01 > .-tabModalSearch > li > a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt01 > .-tabModalSearch > li > span,
  .common-modalArea__pt01 > .-tabModalSearch > li > a {
    font-size: 16px;
  }
}

.common-modalArea__pt01 > .-tabModalSearch > li.is-active > span,
.common-modalArea__pt01 > .-tabModalSearch > li.is-active > a {
  color: #333;
  border-bottom-color: #ba955b;
}

.common-modalArea__pt01.hide-heading > .-modalHeading {
  display: none;
}

.common-modalArea__pt01.hide-heading + .common-modalArea__pt02 {
  padding-top: 50px;
}

.common-modalArea__pt02 {
  padding-top: 100px;
  padding-bottom: 70px;
  height: 100%;
}

.common-modalArea__pt02 > .div01 {
  overflow: auto;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt02 > .div01 {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.common-modalArea__pt02 .div02 {
  padding: 15px 10px;
}

.common-modalArea__pt02 .div02.-headingModalSearch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-modalArea__pt02 .div02.-headingModalSearch > p {
  padding-right: 10px;
  width: calc(100% - 150px);
  font-size: 16px;
  font-weight: 700;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-modalArea__pt02 .div02.-headingModalSearch > button {
  display: block;
  position: relative;
  padding: 3px 10px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  background-color: #eee;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt02 .div02.-headingModalSearch > button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalArea__pt02 .div02.-headingModalSearch > button:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalArea__pt02 .div02.-headingModalSearch > button:hover:before {
  background-color: transparent !important;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt02 .ul01 > li .ul02 {
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
  }
}

.common-modalArea__pt02 .ul01 > li .ul02 > li {
  border-bottom: 1px solid #e5e5e5;
}

.common-modalArea__pt02 .-buttonAccordion {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 17px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  line-height: 1.2;
  border-radius: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EFE8DD;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt02 .-buttonAccordion:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalArea__pt02 .-buttonAccordion:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalArea__pt02 .-buttonAccordion:hover:before {
  background-color: transparent !important;
}

.common-modalArea__pt02 .-buttonAccordion:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt02 .-buttonAccordion:after {
    right: 10px;
  }
}

.common-modalArea__pt02 .-buttonAccordion.is-open:after {
  background-image: url(../images/bt_001b.svgz);
}

.common-modalArea__pt02 .-buttonAccordion + .js-accordion-box {
  display: none;
  overflow: hidden;
}

.common-modalArea__pt02 .-buttonAccordion + .js-accordion-box.is-open {
  display: block;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt02 .-buttonAccordion {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalArea__pt02 .-buttonAccordion:after {
  right: 15px;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EFE8DD;
  margin-bottom: 1px;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 15px 48px 15px 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox.is-open > a:after {
  background-image: url(../images/bt_001b.svgz);
}

.common-modalArea__pt02 .-buttonAccordionCheckbox + .js-accordion-box {
  display: none;
  overflow: hidden;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox + .js-accordion-box.is-open {
  display: block;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox.is-open {
  margin-bottom: 0;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox > input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox > input:checked + span:before {
  background: url(../images/bt_002b.svgz) no-repeat;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox > span {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/bt_002a.svgz) no-repeat;
  background-size: 20px;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox {
    padding: 15px 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox {
    padding: 15px;
  }
}

.common-modalArea__pt02 .-buttonAccordionCheckbox > .-checkbox > span {
  display: block;
  min-height: 20px;
}

.common-modalArea__pt03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.common-modalArea__pt03 .-modalFooter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  height: 70px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt03 .-modalFooter {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalArea__pt03 .-modalFooter > .p01 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.common-modalArea__pt03 .-modalFooter > .p01 > .-textRed {
  color: #f00;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 29px;
  }
}

.common-modalArea__pt03 .-modalFooter > .p01 > .span02 {
  padding-left: 5px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 14px;
  }
}

.common-modalArea__pt03 .-modalFooter > .ul01,
.common-modalArea__pt03 .-modalFooter .ul02 {
  margin-right: -5px;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt03 .-modalFooter > .ul01,
  .common-modalArea__pt03 .-modalFooter .ul02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .ul01,
  .common-modalArea__pt03 .-modalFooter .ul02 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.common-modalArea__pt03 .-modalFooter > .ul01 > li,
.common-modalArea__pt03 .-modalFooter .ul02 > li {
  padding: 0 5px;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt03 .-modalFooter > .ul01 > li,
  .common-modalArea__pt03 .-modalFooter .ul02 > li {
    width: 50%;
  }
}

.common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button,
.common-modalArea__pt03 .-modalFooter .ul02 > li > .-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button:before,
  .common-modalArea__pt03 .-modalFooter .ul02 > li > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button:hover:before,
  .common-modalArea__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button,
  .common-modalArea__pt03 .-modalFooter .ul02 > li > .-button {
    width: 170px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button:hover,
  .common-modalArea__pt03 .-modalFooter .ul02 > li > .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button:hover, html.ipad
.common-modalArea__pt03 .-modalFooter .ul02 > li > .-button:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button:hover:before, html.ipad
.common-modalArea__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
  background-color: transparent !important;
}

.common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button.a01,
.common-modalArea__pt03 .-modalFooter .ul02 > li > .-button.a01 {
  color: #fff;
  font-size: 16px;
  background-color: #ba955b;
}

.common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button.a02,
.common-modalArea__pt03 .-modalFooter .ul02 > li > .-button.a02 {
  color: #ba955b;
}

@media screen and (max-width: 767px) {
  .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalArea__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalArea__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 14px;
  }
}

.common-modalArea__pt03 .-modalFooter > .ul02 {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .ul02 {
    margin-left: 35px;
  }
}

.common-modalArea__pt03 .-modalFooter > .ul02 > li {
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalArea__pt03 .-modalFooter > .ul02 > li > .-button {
    width: 355px;
  }
}

/***************************************************
.common-modalFeature
***************************************************/
.common-modalFeature {
  display: none;
}

@media screen and (min-width: 768px) {
  .common-modalFeature {
    margin: auto;
    padding: 30px;
    width: 830px;
    height: 714px;
    max-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .common-modalFeature {
    width: 100%;
    height: 100%;
  }
}

.common-modalFeature__pattern-1 {
  height: 100%;
}

.common-modalFeature__bg01 {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalFeature__bg01 {
    border-radius: 4px;
  }
}

.common-modalFeature__pt01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.common-modalFeature__pt01 > .-modalHeading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px 15px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-modalFeature__pt01 > .-modalHeading {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalFeature__pt01 > .-modalHeading > h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.common-modalFeature__pt01 > .-modalHeading > .-modalCloseBtn {
  position: absolute;
  top: 50%;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .common-modalFeature__pt01 > .-modalHeading > .-modalCloseBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalFeature__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalFeature__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalFeature__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 10px;
  }
}

.common-modalFeature__pt01 > .-modalHeading > .-modalCloseBtn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_028a.svgz) no-repeat;
}

html.ipad .common-modalFeature__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
  background-color: transparent !important;
}

.common-modalFeature__pt01.hide-heading > .-modalHeading {
  display: none;
}

.common-modalFeature__pt01.hide-heading + .common-modalFeature__pt02 {
  padding-top: 0;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 {
  padding-top: 50px;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalFeature__pattern-1 .common-modalFeature__pt02 {
    padding-bottom: 30px;
  }
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .div01 {
  overflow: auto;
  max-height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalFeature__pattern-1 .common-modalFeature__pt02 .div01 {
    padding: 0 30px;
  }
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .p01 {
  padding: 15px 15px 0;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-modalFeature__pattern-1 .common-modalFeature__pt02 .p01 {
    padding: 27px 0 0;
  }
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 {
  margin-top: 15px;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li > .button01 {
  display: block;
  position: relative;
  padding: 15px 15px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li > .button01:hover:hover {
    opacity: 0.7;
  }
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li > .button01:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li > .button01.is-open:after {
  background-image: url(../images/bt_001b.svgz);
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li > .js-accordion-box {
  display: none;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li > .js-accordion-box.is-open {
  display: block;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .p02 {
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  background-color: #efe8dd;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 {
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
  }
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li:last-child {
  border-bottom: none;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li .-linkArrow {
  display: block;
  position: relative;
  padding: 14px 25px 14px 15px;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li .-linkArrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li .-linkArrow:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li .-linkArrow:hover:before {
  background-color: transparent !important;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li .-linkArrow > span {
  color: #666;
  font-size: 11px;
  font-weight: 400;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li .ul02 > li .-linkArrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/arw_002a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.common-modalFeature__pattern-1 .common-modalFeature__pt02 .ul01 > li:last-child .ul02 {
  border-bottom: 1px solid #e5e5e5;
}

/***************************************************
.common-modalRouteResult
***************************************************/
.common-modalRouteResult {
  display: none;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult {
    margin: auto;
    padding: 30px;
    width: 830px;
    height: 714px;
    max-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult .-onlySp {
    display: none;
  }
}

.common-modalRouteResult__pattern-1 {
  height: 100%;
}

.common-modalRouteResult__bg01 {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__bg01 {
    border-radius: 4px;
  }
}

.common-modalRouteResult__pt01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.common-modalRouteResult__pt01 > .-modalHeading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px 15px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt01 > .-modalHeading {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalRouteResult__pt01 > .-modalHeading > h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.common-modalRouteResult__pt01 > .-modalHeading > .-modalBackBtn {
  position: absolute;
  top: 50%;
  padding-left: 18px;
  color: #ba955b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalBackBtn {
    left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalBackBtn {
    left: 10px;
  }
}

.common-modalRouteResult__pt01 > .-modalHeading > .-modalBackBtn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/arw_002c.svgz) no-repeat;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalBackBtn:hover {
    text-decoration: none;
  }
}

html.ipad .common-modalRouteResult__pt01 > .-modalHeading > .-modalBackBtn:hover {
  text-decoration: underline;
}

.common-modalRouteResult__pt01 > .-modalHeading > .-modalHeadingBtn {
  display: block;
  position: absolute;
  top: 50%;
  padding: 2px 10px;
  color: #ba955b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalHeadingBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalHeadingBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalHeadingBtn {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalHeadingBtn {
    right: 10px;
  }
}

html.ipad .common-modalRouteResult__pt01 > .-modalHeading > .-modalHeadingBtn:hover:before {
  background-color: transparent !important;
}

@media screen and (max-width: 320px) {
  .common-modalRouteResult__pt01 > .-modalHeading > .-modalHeadingBtn {
    padding-right: 3px;
    padding-left: 3px;
    font-size: 10px;
  }
}

.common-modalRouteResult__pt01 > .-tabModalSearch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.common-modalRouteResult__pt01 > .-tabModalSearch > li {
  width: 50%;
}

.common-modalRouteResult__pt01 > .-tabModalSearch > li > span,
.common-modalRouteResult__pt01 > .-tabModalSearch > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-height: 50px;
  color: #999;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt01 > .-tabModalSearch > li > span:hover,
  .common-modalRouteResult__pt01 > .-tabModalSearch > li > a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt01 > .-tabModalSearch > li > span,
  .common-modalRouteResult__pt01 > .-tabModalSearch > li > a {
    font-size: 16px;
  }
}

.common-modalRouteResult__pt01 > .-tabModalSearch > li.is-active > span,
.common-modalRouteResult__pt01 > .-tabModalSearch > li.is-active > a {
  color: #333;
  border-bottom-color: #ba955b;
}

.common-modalRouteResult__pt01.hide-heading > .-modalHeading {
  display: none;
}

.common-modalRouteResult__pt01.hide-heading + .common-modalRouteResult__pt02 {
  padding-top: 50px;
}

.common-modalRouteResult__pt02 {
  padding-top: 100px;
  padding-bottom: 70px;
  height: 100%;
}

.common-modalRouteResult__pt02 > .div01 {
  overflow: auto;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt02 > .div01 {
    padding: 0 30px 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt02 > .div01 {
    padding: 0 10px 10px;
  }
}

.common-modalRouteResult__pt02 > .div01 > .div02 {
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt02 > .div01 > .div02 {
    margin: 0 -30px 20px;
    padding: 10px 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt02 > .div01 > .div02 {
    margin-bottom: 25px;
    padding: 5px 10px 10px;
  }
}

.common-modalRouteResult__pt02 > .div01 .-inputSearch {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.common-modalRouteResult__pt02 > .div01 .-inputSearch > input {
  display: block;
  overflow: hidden;
  padding: 0 42px 0 15px;
  width: 100%;
  height: 40px;
  font-size: 13px;
  border: none;
  border: 3px solid #e5e5e5;
  border-radius: 6px;
  outline: none;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.common-modalRouteResult__pt02 > .div01 .-inputSearch > input::-webkit-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

.common-modalRouteResult__pt02 > .div01 .-inputSearch > input::-webkit-input-placeholder, .common-modalRouteResult__pt02 > .div01 .-inputSearch > input:-ms-input-placeholder, .common-modalRouteResult__pt02 > .div01 .-inputSearch > input::placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

.common-modalRouteResult__pt02 > .div01 .-inputSearch > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 3px;
  right: 3px;
  overflow: hidden;
  width: 42px;
  height: 34px;
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  outline: none;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .common-modalRouteResult__pt02 > .div01 .-inputSearch > span:hover {
    opacity: 0.7;
  }
}

.common-modalRouteResult__pt02 > .div01 .-inputSearch > span:before {
  content: '';
  display: block;
  width: 18px;
  height: 17px;
  background-image: url(../images/icon_027a.svgz);
  background-repeat: no-repeat;
  background-size: 18px 17px;
}

.common-modalRouteResult__pt02 > .div01 .-inputSearch > span {
  cursor: default;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt02 > .div01 .-inputSearch > span:hover {
    opacity: 1;
  }
}

.common-modalRouteResult__pt02 > .div01 .ul01 > li {
  margin-bottom: 15px;
}

.common-modalRouteResult__pt02 > .div01 .ul01 > li .-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.common-modalRouteResult__pt02 > .div01 .ul01 > li .-checkbox > input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.common-modalRouteResult__pt02 > .div01 .ul01 > li .-checkbox > input:checked + span:before {
  background: url(../images/bt_002b.svgz) no-repeat;
}

.common-modalRouteResult__pt02 > .div01 .ul01 > li .-checkbox > span {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}

.common-modalRouteResult__pt02 > .div01 .ul01 > li .-checkbox > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/bt_002a.svgz) no-repeat;
  background-size: 20px;
}

.common-modalRouteResult__pt02 > .div01 .ul01 > li:last-child {
  margin-bottom: 0;
}

.common-modalRouteResult__pt03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.common-modalRouteResult__pt03 .-modalFooter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  height: 70px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt03 .-modalFooter {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalRouteResult__pt03 .-modalFooter > .p01 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.common-modalRouteResult__pt03 .-modalFooter > .p01 > .-textRed {
  color: #f00;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 29px;
  }
}

.common-modalRouteResult__pt03 .-modalFooter > .p01 > .span02 {
  padding-left: 5px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 14px;
  }
}

.common-modalRouteResult__pt03 .-modalFooter > .ul01,
.common-modalRouteResult__pt03 .-modalFooter .ul02 {
  margin-right: -5px;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.common-modalRouteResult__pt03 .-modalFooter > .ul01 > li,
.common-modalRouteResult__pt03 .-modalFooter .ul02 > li {
  padding: 0 5px;
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 > li {
    width: 50%;
  }
}

.common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button,
.common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button:before,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button:hover:before,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button {
    width: 170px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button:hover,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button:hover, html.ipad
.common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button:hover:before, html.ipad
.common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
  background-color: transparent !important;
}

.common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button.a01,
.common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button.a01 {
  color: #fff;
  font-size: 16px;
  background-color: #ba955b;
}

.common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button.a02,
.common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button.a02 {
  color: #ba955b;
}

@media screen and (max-width: 767px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalRouteResult__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 14px;
  }
}

.common-modalRouteResult__pt03 .-modalFooter > .ul02 {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul02 {
    margin-left: 35px;
  }
}

.common-modalRouteResult__pt03 .-modalFooter > .ul02 > li {
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalRouteResult__pt03 .-modalFooter > .ul02 > li > .-button {
    width: 355px;
  }
}

/***************************************************
.common-modalRoute
***************************************************/
.common-modalRoute {
  display: none;
}

@media screen and (min-width: 768px) {
  .common-modalRoute {
    overflow: hidden;
    margin: auto;
    width: 770px;
    height: 654px;
    max-height: 100%;
    border-radius: 4px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRoute {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute .-onlySp {
    display: none;
  }
}

.common-modalRoute__pattern-1 {
  height: 100%;
}

.common-modalRoute__bg01 {
  position: relative;
  height: 100%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__bg01 {
    border-radius: 4px;
  }
}

.common-modalRoute__pt01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.common-modalRoute__pt01 > .-modalHeading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px 15px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt01 > .-modalHeading {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalRoute__pt01 > .-modalHeading > h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.common-modalRoute__pt01 > .-modalHeading > .-modalCloseBtn {
  position: absolute;
  top: 50%;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt01 > .-modalHeading > .-modalCloseBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalRoute__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 10px;
  }
}

.common-modalRoute__pt01 > .-modalHeading > .-modalCloseBtn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_028a.svgz) no-repeat;
}

html.ipad .common-modalRoute__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
  background-color: transparent !important;
}

.common-modalRoute__pt01 > .-modalHeading > .-modalHeadingBtn {
  display: block;
  position: absolute;
  top: 50%;
  padding: 2px 10px;
  color: #ba955b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt01 > .-modalHeading > .-modalHeadingBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalRoute__pt01 > .-modalHeading > .-modalHeadingBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt01 > .-modalHeading > .-modalHeadingBtn {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt01 > .-modalHeading > .-modalHeadingBtn {
    right: 10px;
  }
}

html.ipad .common-modalRoute__pt01 > .-modalHeading > .-modalHeadingBtn:hover:before {
  background-color: transparent !important;
}

@media screen and (max-width: 320px) {
  .common-modalRoute__pt01 > .-modalHeading > .-modalHeadingBtn {
    padding-right: 3px;
    padding-left: 3px;
    font-size: 10px;
  }
}

.common-modalRoute__pt01 > .-tabModalSearch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.common-modalRoute__pt01 > .-tabModalSearch > li {
  width: 50%;
}

.common-modalRoute__pt01 > .-tabModalSearch > li > span,
.common-modalRoute__pt01 > .-tabModalSearch > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-height: 50px;
  color: #999;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt01 > .-tabModalSearch > li > span:hover,
  .common-modalRoute__pt01 > .-tabModalSearch > li > a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt01 > .-tabModalSearch > li > span,
  .common-modalRoute__pt01 > .-tabModalSearch > li > a {
    font-size: 16px;
  }
}

.common-modalRoute__pt01 > .-tabModalSearch > li.is-active > span,
.common-modalRoute__pt01 > .-tabModalSearch > li.is-active > a {
  color: #333;
  border-bottom-color: #ba955b;
}

.common-modalRoute__pt01.hide-heading > .-modalHeading {
  display: none;
}

.common-modalRoute__pt01.hide-heading + .common-modalRoute__pt02 {
  padding-top: 50px;
}

.common-modalRoute__pt02 {
  padding-top: 100px;
  padding-bottom: 70px;
  height: 100%;
}

.common-modalRoute__pt02 > .div01 {
  overflow: auto;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt02 > .div01 > .div02 {
    padding: 0 10px;
  }
}

.common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input {
  display: block;
  overflow: hidden;
  padding: 0 42px 0 15px;
  width: 100%;
  height: 40px;
  font-size: 13px;
  border: none;
  border: 3px solid #e5e5e5;
  border-radius: 6px;
  outline: none;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input::-webkit-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

.common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input::-webkit-input-placeholder, .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input:-ms-input-placeholder, .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input::placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

.common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 3px;
  right: 3px;
  overflow: hidden;
  width: 42px;
  height: 34px;
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  outline: none;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > span:hover {
    opacity: 0.7;
  }
}

.common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > span:before {
  content: '';
  display: block;
  width: 18px;
  height: 17px;
  background-image: url(../images/icon_027a.svgz);
  background-repeat: no-repeat;
  background-size: 18px 17px;
}

.common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  cursor: pointer;
}

@media screen and (max-width: 320px) {
  .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input:-ms-input-placeholder {
    font-size: 12px;
  }
  .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input::-moz-placeholder {
    font-size: 12px;
  }
  .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input::-ms-input-placeholder {
    font-size: 12px;
  }
  .common-modalRoute__pt02 > .div01 > .div02 > .-inputSearch > input::placeholder {
    font-size: 12px;
  }
}

.common-modalRoute__pt02 > .div01 .div03 {
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 .div03 {
    margin: 0 -30px 20px;
    padding: 10px 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt02 > .div01 .div03 {
    margin-bottom: 25px;
    padding: 5px 10px 10px;
  }
}

.common-modalRoute__pt02 > .div01 .div04 {
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 .div04 {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt02 > .div01 .div04 {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalRoute__pt02 > .div01 .div04 > .-headingModalSearch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-modalRoute__pt02 > .div01 .div04 > .-headingModalSearch > p {
  padding-right: 10px;
  width: calc(100% - 150px);
  font-size: 16px;
  font-weight: 700;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-modalRoute__pt02 > .div01 .div04 > .-headingModalSearch > button {
  display: block;
  position: relative;
  padding: 3px 10px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  background-color: #eee;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 .div04 > .-headingModalSearch > button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalRoute__pt02 > .div01 .div04 > .-headingModalSearch > button:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalRoute__pt02 > .div01 .div04 > .-headingModalSearch > button:hover:before {
  background-color: transparent !important;
}

.common-modalRoute__pt02 > .div01 .ul01 > li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.common-modalRoute__pt02 > .div01 .ul01 > li:last-child > .-buttonAccordion {
  margin-bottom: 0;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 17px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  line-height: 1.2;
  border-radius: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EFE8DD;
  margin-bottom: 1px;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion:hover:before {
  background-color: transparent !important;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion:after {
    right: 10px;
  }
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion.is-open:after {
  background-image: url(../images/bt_001b.svgz);
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion + .js-accordion-box {
  display: none;
  overflow: hidden;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion + .js-accordion-box.is-open {
  display: block;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion:after {
  right: 15px;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .-buttonAccordion.is-open {
  margin-bottom: 0;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 15px 48px 15px 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox.is-open > a:after {
  background-image: url(../images/bt_001b.svgz);
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox + .js-accordion-box {
  display: none;
  overflow: hidden;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox + .js-accordion-box.is-open {
  display: block;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox {
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
  }
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox > input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox > input:checked + span:before {
  background: url(../images/bt_002b.svgz) no-repeat;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox > span {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/bt_002a.svgz) no-repeat;
  background-size: 20px;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox {
    padding: 15px 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox {
    padding: 15px;
  }
}

.common-modalRoute__pt02 > .div01 .ul01 > li > .js-accordion-box > ul > li > .-buttonAccordionCheckbox > .-checkbox > span {
  display: block;
  min-height: 20px;
}

.common-modalRoute__pt02 > .div01 .ul01 > li .ul02 {
  padding-left: 45px;
  border-top: 1px solid #e5e5e5;
  background-color: #f7f7f7;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt02 > .div01 .ul01 > li .ul02 {
    border-right: 1px solid #e5e5e5;
  }
}

.common-modalRoute__pt02 > .div01 .ul01 > li .ul02 > li {
  border-bottom: 1px solid #e5e5e5;
}

.common-modalRoute__pt02 > .div01 .ul01 > li .ul02 > li:last-child {
  border-bottom: none;
}

.common-modalRoute__pt03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.common-modalRoute__pt03 .-modalFooter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  height: 70px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt03 .-modalFooter {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalRoute__pt03 .-modalFooter > .p01 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.common-modalRoute__pt03 .-modalFooter > .p01 > .-textRed {
  color: #f00;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 29px;
  }
}

.common-modalRoute__pt03 .-modalFooter > .p01 > .span02 {
  padding-left: 5px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 14px;
  }
}

.common-modalRoute__pt03 .-modalFooter > .ul01,
.common-modalRoute__pt03 .-modalFooter .ul02 {
  margin-right: -5px;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01,
  .common-modalRoute__pt03 .-modalFooter .ul02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01,
  .common-modalRoute__pt03 .-modalFooter .ul02 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.common-modalRoute__pt03 .-modalFooter > .ul01 > li,
.common-modalRoute__pt03 .-modalFooter .ul02 > li {
  padding: 0 5px;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01 > li,
  .common-modalRoute__pt03 .-modalFooter .ul02 > li {
    width: 50%;
  }
}

.common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button,
.common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button:before,
  .common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button:hover:before,
  .common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button,
  .common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button {
    width: 170px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button:hover,
  .common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button:hover, html.ipad
.common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button:hover:before, html.ipad
.common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
  background-color: transparent !important;
}

.common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button.a01,
.common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button.a01 {
  color: #fff;
  font-size: 16px;
  background-color: #ba955b;
}

.common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button.a02,
.common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button.a02 {
  color: #ba955b;
}

@media screen and (max-width: 767px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalRoute__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 14px;
  }
}

.common-modalRoute__pt03 .-modalFooter > .ul02 {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .ul02 {
    margin-left: 35px;
  }
}

.common-modalRoute__pt03 .-modalFooter > .ul02 > li {
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalRoute__pt03 .-modalFooter > .ul02 > li > .-button {
    width: 355px;
  }
}

/***************************************************
.common-modalJobCategory
***************************************************/
.common-modalJobCategory {
  display: none;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory {
    margin: auto;
    padding: 30px;
    width: 830px;
    height: 714px;
    max-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory .-onlySp {
    display: none;
  }
}

.common-modalJobCategory__pattern-1 {
  height: 100%;
}

.common-modalJobCategory__bg01 {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__bg01 {
    border-radius: 4px;
  }
}

.common-modalJobCategory__pt01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.common-modalJobCategory__pt01 > .-modalHeading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px 15px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt01 > .-modalHeading {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalJobCategory__pt01 > .-modalHeading > h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.common-modalJobCategory__pt01 > .-modalHeading > .-modalCloseBtn {
  position: absolute;
  top: 50%;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt01 > .-modalHeading > .-modalCloseBtn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalJobCategory__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt01 > .-modalHeading > .-modalCloseBtn {
    left: 10px;
  }
}

.common-modalJobCategory__pt01 > .-modalHeading > .-modalCloseBtn:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_028a.svgz) no-repeat;
}

html.ipad .common-modalJobCategory__pt01 > .-modalHeading > .-modalCloseBtn:hover:before {
  background-color: transparent !important;
}

.common-modalJobCategory__pt01.hide-heading > .-modalHeading {
  display: none;
}

.common-modalJobCategory__pt01.hide-heading + .common-modalJobCategory__pt02 {
  padding-top: 0;
}

.common-modalJobCategory__pt02 {
  padding-top: 50px;
  padding-bottom: 70px;
  height: 100%;
}

.common-modalJobCategory__pt02 > .div01 {
  overflow: auto;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt02 > .div01 {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.common-modalJobCategory__pt02 > .div01 > .-headingModalSearch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-modalJobCategory__pt02 > .div01 > .-headingModalSearch > p {
  padding-right: 10px;
  width: calc(100% - 150px);
  font-size: 16px;
  font-weight: 700;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-modalJobCategory__pt02 > .div01 > .-headingModalSearch > button {
  display: block;
  position: relative;
  padding: 3px 10px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  background-color: #eee;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt02 > .div01 > .-headingModalSearch > button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalJobCategory__pt02 > .div01 > .-headingModalSearch > button:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalJobCategory__pt02 > .div01 > .-headingModalSearch > button:hover:before {
  background-color: transparent !important;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt02 > .div01 > .-headingModalSearch {
    padding: 15px 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt02 > .div01 > .-headingModalSearch {
    padding: 22px 0 15px;
  }
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EFE8DD;
  margin-bottom: 1px;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 15px 48px 15px 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox.is-open > a:after {
  background-image: url(../images/bt_001b.svgz);
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox + .js-accordion-box {
  display: none;
  overflow: hidden;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox + .js-accordion-box.is-open {
  display: block;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox.is-open {
  margin-bottom: 0;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox > input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox > input:checked + span:before {
  background: url(../images/bt_002b.svgz) no-repeat;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox > span {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/bt_002a.svgz) no-repeat;
  background-size: 20px;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox {
    padding: 15px 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox {
    padding: 15px;
  }
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li > .-buttonAccordionCheckbox > .-checkbox > span {
  display: block;
  min-height: 20px;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li .ul02 {
  padding-left: 45px;
  border-top: 1px solid #e5e5e5;
  background-color: #f7f7f7;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt02 > .div01 > .ul01 > li .ul02 {
    border-right: 1px solid #e5e5e5;
  }
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li .ul02 > li {
  border-top: 1px solid #e5e5e5;
}

.common-modalJobCategory__pt02 > .div01 > .ul01 > li .ul02 > li:first-child {
  border-top: none;
}

.common-modalJobCategory__pt03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.common-modalJobCategory__pt03 .-modalFooter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  height: 70px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt03 .-modalFooter {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.common-modalJobCategory__pt03 .-modalFooter > .p01 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.common-modalJobCategory__pt03 .-modalFooter > .p01 > .-textRed {
  color: #f00;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .p01 > .-textRed {
    font-size: 29px;
  }
}

.common-modalJobCategory__pt03 .-modalFooter > .p01 > .span02 {
  padding-left: 5px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .p01 > .span02 {
    font-size: 14px;
  }
}

.common-modalJobCategory__pt03 .-modalFooter > .ul01,
.common-modalJobCategory__pt03 .-modalFooter .ul02 {
  margin-right: -5px;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.common-modalJobCategory__pt03 .-modalFooter > .ul01 > li,
.common-modalJobCategory__pt03 .-modalFooter .ul02 > li {
  padding: 0 5px;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 > li {
    width: 50%;
  }
}

.common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button,
.common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button:before,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button:hover:before,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button {
    width: 170px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button:hover,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button:hover, html.ipad
.common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button:hover:before, html.ipad
.common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button:hover:before {
  background-color: transparent !important;
}

.common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button.a01,
.common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button.a01 {
  color: #fff;
  font-size: 16px;
  background-color: #ba955b;
}

.common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button.a02,
.common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button.a02 {
  color: #ba955b;
}

@media screen and (max-width: 767px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul01 > li > .-button.a02,
  .common-modalJobCategory__pt03 .-modalFooter .ul02 > li > .-button.a02 {
    font-size: 14px;
  }
}

.common-modalJobCategory__pt03 .-modalFooter > .ul02 {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul02 {
    margin-left: 35px;
  }
}

.common-modalJobCategory__pt03 .-modalFooter > .ul02 > li {
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalJobCategory__pt03 .-modalFooter > .ul02 > li > .-button {
    width: 355px;
  }
}

/***************************************************
.wrapper-contents
***************************************************/
@media screen and (min-width: 768px) {
  .wrapper-contents {
    margin: 0 auto;
    padding: 0 15px;
    width: 1200px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper-contents {
    margin-top: 10px;
  }
}

.wrapper-contents__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .wrapper-contents__in {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .wrapper-contents__in .wrapper-contents__pt01 {
    margin: 0;
    margin: 30px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .wrapper-contents__in .wrapper-contents__pt01 {
    padding-bottom: 15px;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
  }
}

.wrapper-contents__in .wrapper-contents__pt02 {
  margin: 10px 0 0;
}

@media screen and (min-width: 768px) {
  .wrapper-contents__in .wrapper-contents__pt02 {
    margin: 30px 0 0;
  }
}

.wrapper-contents__in .wrapper-contents__pt02 .top-pageTitle:first-child .top-pageTitle__pattern-2.sp-1 {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .wrapper-contents__pt01 {
    margin: 0 auto;
    width: 270px;
  }
}

@media screen and (min-width: 768px) {
  .wrapper-contents__pt02 {
    margin: 40px auto 0;
    width: 870px;
  }
}

.common-breadcrumb + .wrapper-contents .wrapper-contents__pt02 {
  margin-top: 8px;
}

/***************************************************
.wrapper-modal
***************************************************/
.wrapper-modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 15;
}

.wrapper-modal.is-open {
  display: block;
}

.wrapper-modal.is-open .wrapper-modal__pt01 > div {
  display: block;
}

.wrapper-modal__pt01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: 100%;
  height: 100%;
}

/***************************************************
.wrapper-heading
***************************************************/
.wrapper-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/***************************************************
.common-modalAddress
***************************************************/
.common-modalAddress {
  display: none;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .common-modalAddress {
    padding: 30px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .common-modalAddress {
    width: 770px;
  }
}

.common-modalAddress__bg01 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__bg01 {
    padding: 25px 30px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalAddress__bg01 {
    border-radius: 4px;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .div01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  max-height: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .div01 {
    margin-right: -15px;
    margin-left: -15px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .div01 {
    margin-top: 10px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .div02 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .div02 {
    padding: 0 15px;
    width: 50%;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .div02 > iframe {
  display: block;
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .div02 > iframe {
    height: 260px;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .div02 > figure {
  display: block;
  width: 100%;
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .div02 > figure > img {
  width: 100%;
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 {
    padding: 0 15px;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 {
    padding: 10px 10px 0;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li > .-heading03 {
  position: relative;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li > .-heading03 {
    padding-left: 10px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li > .-heading03 {
    padding-left: 15px;
    font-size: 18px;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li > .-heading03:before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background-color: #ba955b;
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li > p {
  margin-top: 10px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li > p {
    font-size: 14px;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li .-linkExternal {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  font-size: 12px;
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li .-linkExternal:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_031a.svgz) no-repeat;
  background-size: 12px;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li .-linkExternal {
    font-size: 14px;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li * + .a01 {
  display: inline-block;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li * + .a01 {
    margin-top: 10px;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .ul01 > li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.common-modalAddress__pattern-1 .common-modalAddress__pt01 .h01 {
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .h01 {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt01 .h01 {
    padding: 10px 10px 0;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt02 {
  padding-top: 15px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt02 {
    padding-top: 10px;
    padding-bottom: 12px;
  }
}

.common-modalAddress__pattern-1 .common-modalAddress__pt02 .-buttonModalClose {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 8px 17px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #eee;
}

@media screen and (min-width: 768px) {
  .common-modalAddress__pattern-1 .common-modalAddress__pt02 .-buttonModalClose:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalAddress__pattern-1 .common-modalAddress__pt02 .-buttonModalClose:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalAddress__pattern-1 .common-modalAddress__pt02 .-buttonModalClose:hover:before {
  background-color: transparent !important;
}

.common-modalAddress__pattern-1 .common-modalAddress__pt02 .-buttonModalClose > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
}

.common-modalAddress__pattern-1 .common-modalAddress__pt02 .-buttonModalClose > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/icon_032a.svgz);
  background-repeat: no-repeat;
  background-size: 8px;
}

/***************************************************
.common-modalContact
***************************************************/
.common-modalContact {
  display: none;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .common-modalContact {
    padding: 30px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .common-modalContact {
    width: 570px;
  }
}

.common-modalContact__bg01 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalContact__bg01 {
    padding: 25px 30px 15px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalContact__bg01 {
    padding: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-modalContact__bg01 {
    border-radius: 4px;
  }
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .div01 {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .common-modalContact__pattern-1 .common-modalContact__pt01 .div01 {
    width: 310px;
  }
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .p01 {
  font-size: 35px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-modalContact__pattern-1 .common-modalContact__pt01 .p01 {
    display: none;
  }
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .p02 {
  font-size: 12px;
  font-weight: 700;
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .a01 {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 17px 10px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ba955b;
  margin-bottom: 10px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-modalContact__pattern-1 .common-modalContact__pt01 .a01 {
    display: none;
  }
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .a01 > span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .a01 > span:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_033a.svgz);
  background-repeat: no-repeat;
  background-size: 16px;
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .a01 > span > small {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .common-modalContact__pattern-1 .common-modalContact__pt01 .a02 {
    color: #333;
    text-decoration: none;
    pointer-events: none;
  }
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .ul01 {
  margin-top: 10px;
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .ul01 > li {
  margin-left: 14px;
  font-size: 10px;
  text-indent: -14px;
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .ul01 > li:before {
  content: '※';
  padding-right: 2px;
  font-size: 12px;
}

.common-modalContact__pattern-1 .common-modalContact__pt01 .ul01 > li:not(:last-child) {
  margin-bottom: 3px;
}

.common-modalContact__pattern-1 .common-modalContact__pt02 {
  padding-top: 20px;
  text-align: center;
}

.common-modalContact__pattern-1 .common-modalContact__pt02 .-buttonModalClose {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 8px 17px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #eee;
}

@media screen and (min-width: 768px) {
  .common-modalContact__pattern-1 .common-modalContact__pt02 .-buttonModalClose:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalContact__pattern-1 .common-modalContact__pt02 .-buttonModalClose:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalContact__pattern-1 .common-modalContact__pt02 .-buttonModalClose:hover:before {
  background-color: transparent !important;
}

.common-modalContact__pattern-1 .common-modalContact__pt02 .-buttonModalClose > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
}

.common-modalContact__pattern-1 .common-modalContact__pt02 .-buttonModalClose > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/icon_032a.svgz);
  background-repeat: no-repeat;
  background-size: 8px;
}

/***************************************************
.common-downloadApp
***************************************************/
.common-downloadApp {
  position: relative;
  z-index: 11;
}

@media screen and (min-width: 768px) {
  .common-downloadApp {
    display: none;
  }
}

.common-downloadApp__pattern-1.sp-1 {
  padding: 0;
}

.common-downloadApp__bg01 {
  background-color: #f2f2f2;
}

.common-downloadApp__pt01 .div01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 25px 8px 15px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-downloadApp__pt01 .div01 > .div02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-downloadApp__pt01 .div01 > .div02 > .p01 {
  color: #444;
  font-size: 10px;
}

.common-downloadApp__pt01 .div01 > .div02 > .button01 {
  position: relative;
  width: 20px;
  height: 20px;
}

.common-downloadApp__pt01 .div01 > .div02 > .button01:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../images/icon_034a.svgz) no-repeat;
  background-size: 8px;
}

.common-downloadApp__pt01 .div01 > .div02 > .i01 {
  margin-right: 10px;
  margin-left: 15px;
  width: 40px;
}

.common-downloadApp__pt01 .div01 > .div02 > .i01 > img {
  width: 100%;
  border-radius: 6px;
}

.common-downloadApp__pt01 .div01 > .a01 {
  color: #0070c9;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

/***************************************************
.common-modalError
***************************************************/
.common-modalError {
  display: none;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .common-modalError {
    padding: 30px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .common-modalError {
    width: 570px;
  }
}

.common-modalError__bg01 {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .common-modalError__bg01 {
    padding: 25px 30px 25px;
  }
}

@media screen and (max-width: 767px) {
  .common-modalError__bg01 {
    padding: 10px;
  }
}

.common-modalError__pattern-1 .common-modalError__pt01 {
  text-align: center;
}

.common-modalError__pattern-1 .common-modalError__pt01 .p01 {
  margin-bottom: 10px;
  color: #f00;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-modalError__pattern-1 .common-modalError__pt01 .p01 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

.common-modalError__pattern-1 .common-modalError__pt01 .p02 {
  font-size: 12px;
}

.common-modalError__pattern-1 .common-modalError__pt02 {
  padding-top: 15px;
  text-align: center;
}

.common-modalError__pattern-1 .common-modalError__pt02 .-buttonModalClose {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 8px 17px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #eee;
}

@media screen and (min-width: 768px) {
  .common-modalError__pattern-1 .common-modalError__pt02 .-buttonModalClose:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-modalError__pattern-1 .common-modalError__pt02 .-buttonModalClose:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

html.ipad .common-modalError__pattern-1 .common-modalError__pt02 .-buttonModalClose:hover:before {
  background-color: transparent !important;
}

.common-modalError__pattern-1 .common-modalError__pt02 .-buttonModalClose > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
}

.common-modalError__pattern-1 .common-modalError__pt02 .-buttonModalClose > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/icon_032a.svgz);
  background-repeat: no-repeat;
  background-size: 8px;
}

/***************************************************
.common-info
***************************************************/
.common-info__pattern-1.sp-1 {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .common-info__pattern-1.sp-1 {
    margin-top: 10px;
    padding: 0 10px;
  }
}

.common-info__bg01 {
  padding: 10px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  background: #fff;
}

@media screen and (min-width: 768px) {
  .common-info__bg01 {
    padding: 30px 25px 15px;
  }
}

.common-info__pt01 > .-heading01 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
}

.common-info__pt01 > .-heading01 > span {
  padding-left: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

.common-info__pt02 > .-boxInfo {
  margin-top: 7px;
  border-top: 2px solid #e5e5e5;
}

.common-info__pt02 > .-boxInfo > .div01 {
  padding: 12px 0;
}

@media screen and (min-width: 768px) {
  .common-info__pt02 > .-boxInfo > .div01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
  }
}

.common-info__pt02 > .-boxInfo > .div01:not(:first-child) {
  border-top: 1px dotted #e5e5e5;
}

.common-info__pt02 > .-boxInfo > .div01 > .div02 {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-info__pt02 > .-boxInfo > .div01 > .div02 {
    width: 220px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.common-info__pt02 > .-boxInfo > .div01 > .div03 {
  width: 100%;
  word-break: break-word;
}

@media screen and (max-width: 767px) {
  .common-info__pt02 > .-boxInfo > .div01 > .div03 {
    padding-top: 8px;
    padding-left: 10px;
  }
}

.common-info .common-info__pattern-1 .p01 {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-info .common-info__pattern-1 .p01 {
    padding: 15px 0;
  }
}

.common-info .common-info__pattern-1 > .-button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 15px 10px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}

.common-info .common-info__pattern-1 > .-button.a01 {
  position: relative;
  margin: 20px auto 0;
  padding: 12px 10px;
  width: 165px;
  color: #ba955b;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.24);
}

@media screen and (min-width: 768px) {
  .common-info .common-info__pattern-1 > .-button.a01:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-info .common-info__pattern-1 > .-button.a01:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (max-width: 767px) {
  .common-info .common-info__pattern-1 > .-button.a01 {
    margin-top: 10px;
    padding: 8px 10px;
    width: 85px;
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-info .common-info__pattern-1 > .-button.a01:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

.common-info .common-info__pattern-1 > .-button.a01 > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
}

.common-info .common-info__pattern-1 > .-button.a01 > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/icon_028a.svgz);
  background-repeat: no-repeat;
  background-size: 12px;
}

@media screen and (max-width: 767px) {
  .common-info .common-info__pattern-1 > .-button.a01 > span:before {
    top: 50%;
    width: 8px;
    height: 8px;
    background-size: 8px;
  }
}

/***************************************************
.common-jobTabs
***************************************************/
@media screen and (max-width: 767px) {
  .common-jobTabs .-onlyPc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .common-jobTabs .-onlySp {
    display: none;
  }
}

.common-jobTabs .common-jobTabs__pattern-1.sp-1 {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .common-jobTabs .common-jobTabs__pattern-1.sp-1 {
    margin-top: 10px;
    padding: 0 10px;
  }
}

.common-jobTabs__bg01 {
  position: relative;
  height: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
  background: #fff;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt01 {
  z-index: 1;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 60px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li {
  width: 50%;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li > span,
.common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-height: 50px;
  color: #999;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li > span:hover,
  .common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li > a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li > span,
  .common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li > a {
    font-size: 16px;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li.is-active > span,
.common-jobTabs__pattern-1 .common-jobTabs__pt01 > .-tabModalSearch > li.is-active > a {
  color: #333;
  border-bottom-color: #ba955b;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 {
  padding: 26px 30px;
}

@media screen and (max-width: 767px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 {
    padding: 10px;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-heading01 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-heading01 > span {
  padding-left: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo {
  margin-top: 7px;
  border-top: 2px solid #e5e5e5;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo > .div01 {
  padding: 12px 0;
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo > .div01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo > .div01:not(:first-child) {
  border-top: 1px dotted #e5e5e5;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo > .div01 > .div02 {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo > .div01 > .div02 {
    width: 220px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo > .div01 > .div03 {
  width: 100%;
  word-break: break-word;
}

@media screen and (max-width: 767px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo > .div01 > .div03 {
    padding-top: 8px;
    padding-left: 10px;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo + .-heading01 {
  margin-top: 25px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-tagWithText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 400;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-tagWithText > .i01 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-right: 2px;
  width: 14px;
  height: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  z-index: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-tagWithText > .i01:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #ff7f00;
  z-index: -1;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-tagWithText > .span01 {
  width: 100%;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-tagWithText > .i01 {
  margin-right: 5px;
  padding: 2px;
  width: auto;
  height: auto;
  min-width: 16px;
  min-height: 16px;
  color: #ba955b;
  line-height: 1;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-tagWithText > .i01:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #f8efe1;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-boxImage {
  text-align: center;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-boxImage > figure img {
  margin: 0 auto;
  max-width: 100%;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-boxImage > p {
  margin-top: 5px;
  color: #999;
  font-weight: 700;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listDecimal {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  counter-reset: num;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listDecimal > li {
  margin-bottom: 5px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listDecimal > li:last-child {
  margin-bottom: 0;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listDecimal > li {
  position: relative;
  padding-left: 19px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listDecimal > li:before {
  content: counters(num, ".") ".";
  position: absolute;
  left: 0;
  color: #ba955b;
  font-weight: bold;
  counter-increment: num;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listReference {
  color: #444;
  font-size: 10px;
  line-height: 1.4;
  padding-top: 10px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listReference > li {
  margin-bottom: 5px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listReference > li:last-child {
  margin-bottom: 0;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listReference > li {
  position: relative;
  padding-left: 14px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listReference > li:before {
  content: '※';
  position: absolute;
  left: 0;
}

html.ipad .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listReference > li > a:hover {
  text-decoration: underline;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .-listReference.indent {
  margin-left: 21px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul03 > li:nth-child(1) {
    padding-right: 30px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul03 > li:nth-child(2) {
    margin-top: 10px;
    padding-right: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul03 > li:nth-child(2) {
    width: 280px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul03 > li .js-slider-nav {
  margin: 0 -15px;
  width: calc(100% + 30px);
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 > li:nth-child(1) {
    width: 170px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 > li:nth-child(1) {
    padding-right: 10px;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 > li:nth-child(2) {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 > li:nth-child(2) {
    margin-top: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 > li:nth-child(2) {
    padding-left: 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 > li:nth-child(2) > .-boxReadmore {
    margin-top: 10px;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul04 > li > .-boxImage img {
  width: 100%;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul05 {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul05 > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .ul05 > li > span {
  width: 20px;
  color: #ba955b;
  font-weight: 700;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .div10 {
  margin-bottom: 10px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .div11 {
  margin-bottom: -4px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .div11 > .-tag {
  margin-bottom: 4px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .-boxInfo .p02 {
  margin-top: 5px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-tag {
  display: inline-block;
  position: relative;
  padding: 2px 5px;
  color: #A08150;
  font-size: 10px;
  text-align: center;
  border: 1px solid #ba955b;
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 0.5px solid #ba955b;
  background-color: #faf3e3;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-listReference {
  color: #444;
  font-size: 10px;
  line-height: 1.4;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-listReference > li {
  margin-bottom: 5px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-listReference > li:last-child {
  margin-bottom: 0;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-listReference > li {
  position: relative;
  padding-left: 14px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-listReference > li:before {
  content: '※';
  position: absolute;
  left: 0;
}

html.ipad .common-jobTabs__pattern-1 .common-jobTabs__pt02 .-listReference > li > a:hover {
  text-decoration: underline;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-boxDescription:not(:first-child) {
  margin-top: 8px;
  margin-bottom: 8px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-boxDescription > dt {
  font-weight: 700;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-boxDescription > dd {
  margin-top: 2px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .-boxDetail {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 12px;
  text-align: center;
  border-radius: 4px;
  background-color: #f7f7f7;
  margin-bottom: 0;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .div04 {
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

@media screen and (min-width: 768px) {
  .common-jobTabs__pattern-1 .common-jobTabs__pt02 > .div04 > .div05 {
    margin: 0 auto;
    width: 390px;
  }
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 > .div04 > .div05 .-boxDetail + ._boxButton {
  margin-top: 15px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt02 .wrapper-heading {
  margin-top: 25px;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt03 {
  text-align: right;
}

.common-jobTabs__pattern-1 .common-jobTabs__pt03 > .p01 {
  margin-top: 4px;
  color: #999;
  font-size: 10px;
}

.common-jobTabs .-boxReadmore {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 124.32px;
  -webkit-transition: height 0.3s ease-in;
  transition: height 0.3s ease-in;
}

@media screen and (max-width: 767px) {
  .common-jobTabs .-boxReadmore {
    height: 124px;
  }
}

.common-jobTabs .-boxReadmore:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, white), to(white));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
}

.common-jobTabs .-boxReadmore.is-open {
  display: block;
}

.common-jobTabs .-boxReadmore.is-open, .common-jobTabs .-boxReadmore.hideBtn {
  height: auto;
}

.common-jobTabs .-boxReadmore.is-open:after, .common-jobTabs .-boxReadmore.hideBtn:after {
  height: 0;
}

.common-jobTabs .-boxReadmore.js-one-line {
  height: 61.32px;
}

.common-jobTabs .-boxReadmore.js-box-200 {
  height: 200px;
}

.common-jobTabs .-boxReadmore:after {
  z-index: 2;
}

.common-jobTabs .-boxReadmoreInner {
  height: auto;
}

.common-jobTabs .-boxReadmoreInner > div:last-child {
  padding-bottom: 1px;
}

.common-jobTabs .-linkMore {
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 1px;
}

@media screen and (min-width: 768px) {
  .common-jobTabs .-linkMore:hover > span {
    text-decoration: none;
  }
}

.common-jobTabs .-linkMore > span {
  position: relative;
  padding-left: 23px;
  color: #ba955b;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}

.common-jobTabs .-linkMore > span:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/bt_001a.svgz);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.common-jobTabs .-linkMore.is-open > span:before {
  background-image: url(../images/bt_001b.svgz);
}

.common-jobTabs .-wrapperCenter {
  text-align: center;
  padding-right: 15px;
}

@media screen and (min-width: 768px) {
  .common-rankResult__pt01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
  }
}

@media screen and (min-width: 768px) {
  .common-rankResult__pt01 > .div01 {
    padding: 0 10px;
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .common-rankResult__pt01 > .div01:nth-child(2) {
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .common-rankResult__pt01 > .div01:nth-child(2) {
    margin-top: 20px;
  }
}

.common-rankResult__pt01 > .div01 > .ul01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
  margin-left: 92px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.common-rankResult__pt01 > .div01 > .ul01 > li {
  padding: 0 2px;
  color: #999;
  font-size: 10px;
}

.common-rankResult__pt01 > .div01 > .div02:not(:first-of-type) {
  margin-top: 10px;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div04 {
  padding-right: 15px;
  text-align: center;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div04 > p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 44px;
  height: 30px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 6px;
  background-color: #ba955b;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div04 > p:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 0;
  height: 0;
  border-width: 4.5px 0 4.5px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #ba955b;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div05 {
  width: 35px;
  text-align: right;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div05 > p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div06 {
  padding: 0 10px;
  width: 100%;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div06 > .ul02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div06 > .ul02:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  z-index: 1;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div06 > .ul02 > li {
  position: relative;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div06 > .ul02 > li > .span01 {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../images/icon_035a.svgz) center no-repeat;
  background-size: 7px;
  z-index: 1;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div06 > .ul02 > li > .span02 {
  display: none;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div06 > .ul02 > li.is-active > .span02 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../images/icon_035b.svgz) center no-repeat;
  background-size: 13px;
  z-index: 2;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div07 {
  width: 44px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div07 > p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div08 {
  width: 80px;
  text-align: right;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div08 > p {
  font-size: 10px;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div09 {
  width: 70px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.common-rankResult__pt01 > .div01 > .div02 > .div03 > .div09 > p {
  font-size: 10px;
}

.common-rankResult__pt02 {
  margin-top: 20px;
}

.common-rankResult__pt02 > p {
  font-size: 12px;
}

.common-rankResult__pt02 > div .-tag {
  display: inline-block;
  position: relative;
  padding: 2px 5px;
  color: #ba955b;
  font-size: 10px;
  text-align: center;
  border: 1px solid #ba955b;
  border-radius: 100px;
}

.common-rankResult__pt02 > div + p {
  margin-top: 5px;
}

/***************************************************
.common-boxVideo
***************************************************/
.common-boxVideo__pattern-1.sp-1 {
  margin-top: 15px;
}

.common-boxVideo__pt01 {
  padding: 6px 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #ba955b;
}

.common-boxVideo__pt01 .h01 {
  position: relative;
  padding-left: 17px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.common-boxVideo__pt01 .h01:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(../images/icon_030a.svgz) no-repeat;
  background-size: 12px;
}

.common-boxVideo__pt02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-top: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .common-boxVideo__pt02 {
    padding: 30px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.common-boxVideo__pt02 > div {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .common-boxVideo__pt02 > div {
    width: 360px;
  }
}

.common-boxVideo__pt02 > .div01 > * {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .common-boxVideo__pt02 > .div02 {
    margin-top: 10px;
  }
}

.common-boxVideo__pt02 > .div02 .h02 {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .common-boxVideo__pt02 > .div02 .h02 {
    padding-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px dotted #e5e5e5;
  }
}

.common-boxVideo__pt02 .video-js {
  height: 246px;
}

.common-boxVideo__pt02 .video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(186, 149, 91, 0.6) !important;
}

.common-boxVideo__pt02 .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.8rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/***************************************************
.common-buttonSubmit
***************************************************/
.common-buttonSubmit__pattern-1.sp-1 {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .common-buttonSubmit__pattern-1.sp-1 {
    margin-top: 10px;
    padding: 0 10px;
  }
}

.common-buttonSubmit__pt01 > .-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 10px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 > .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-buttonSubmit__pt01 > .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

.common-buttonSubmit__pt01 > .-button.a01 {
  color: #fff;
  font-size: 16px;
  background-color: #ba955b;
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 > .-button.a01 {
    width: 370px;
  }
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 > .-button.a01:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-buttonSubmit__pt01 > .-button.a01:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-buttonSubmit__pt01 > .-button.a01:hover:before {
  background-color: transparent !important;
}

.common-buttonSubmit__pt01 > .-button.a02 {
  width: 165px;
  min-height: 40px;
  color: #ba955b;
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .common-buttonSubmit__pt01 > .-button.a02 {
    margin-top: 10px;
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 > .-button.a02 {
    margin-top: 15px;
    font-size: 14px;
  }
}

html.ipad .common-buttonSubmit__pt01 > .-button.a02:hover:hover:before {
  background-color: transparent !important;
}

.common-buttonSubmit__pt01 > .-button.a04 {
  display: block;
  overflow: hidden;
  padding: 16px 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px #2b0000;
  box-shadow: 0 1px 2px #2b0000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #780000;
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 > .-button.a04:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-buttonSubmit__pt01 > .-button.a04:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 > .-button.a04 {
    width: 370px;
  }
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 > .-button.a04:hover {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(43, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 2px rgba(43, 0, 0, 0.3);
  }
}

html.ipad .common-buttonSubmit__pt01 > .-button.a04:hover {
  -webkit-box-shadow: 0 1px 2px #2b0000 !important;
  box-shadow: 0 1px 2px #2b0000 !important;
}

html.ipad .common-buttonSubmit__pt01 > .-button.a04:hover:before {
  background-color: transparent !important;
}

.common-buttonSubmit__pt01 .a03 {
  position: relative;
  padding-left: 20px;
  color: #ba955b;
  font-size: 14px;
}

.common-buttonSubmit__pt01 .a03:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/arw_003a.svgz);
  background-size: 14px;
}

.common-buttonSubmit__pt01 .p01 {
  margin-top: 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 .p01 {
    margin-top: 15px;
  }
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 .-boxContentW370PC {
    margin: 0 auto;
    width: 370px;
  }
}

.common-buttonSubmit__pt01 .-listReference {
  color: #444;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 10px;
}

.common-buttonSubmit__pt01 .-listReference > li {
  margin-bottom: 5px;
}

.common-buttonSubmit__pt01 .-listReference > li:last-child {
  margin-bottom: 0;
}

.common-buttonSubmit__pt01 .-listReference > li {
  position: relative;
  padding-left: 14px;
}

.common-buttonSubmit__pt01 .-listReference > li:before {
  content: '※';
  position: absolute;
  left: 0;
}

html.ipad .common-buttonSubmit__pt01 .-listReference > li > a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .common-buttonSubmit__pt01 .-listReference {
    font-size: 12px;
  }
  .common-buttonSubmit__pt01 .-listReference > li {
    padding-left: 16px;
  }
}

/***************************************************
.common-boxError
***************************************************/
.common-boxError__pattern-1.sp-1 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .common-boxError__pattern-1.sp-1 {
    margin-top: 10px;
    padding: 0 10px;
  }
}

.common-boxError__pattern-2.sp-1 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .common-boxError__pattern-2.sp-1 {
    margin-top: 10px;
    padding: 0 10px;
  }
}

.common-boxError__pattern-4.sp-1 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .common-boxError__pattern-4.sp-1 {
    margin-top: 10px;
    padding: 0 10px;
  }
}

@media screen and (min-width: 768px) {
  .common-boxError__pattern-4 .common-boxError__bg01 {
    padding: 30px;
  }
}

.common-boxError__bg01 {
  padding: 10px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  background: #fff;
}

@media screen and (min-width: 768px) {
  .common-boxError__bg01 {
    padding: 15px 30px 30px;
  }
}

.common-boxError__pt01 {
  text-align: center;
}

.common-boxError__pt01 > .figure01 {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .common-boxError__pt01 > .figure01 {
    margin-top: 8px;
  }
}

.common-boxError__pt01 > .p01 {
  margin-bottom: 10px;
  color: #f00;
  font-weight: bold;
}

.common-boxError__pt01 > .p01 > a {
  color: #f00;
}

@media screen and (min-width: 768px) {
  .common-boxError__pt01 .-onlySp {
    display: none;
  }
}

.common-boxError .common-boxError__pattern-1 .-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 11px 10px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  margin: 0 auto;
  width: 165px;
  min-height: 24px;
  color: #ba955b;
  border: 1px solid #e5e5e5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-boxError .common-boxError__pattern-1 .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-boxError .common-boxError__pattern-1 .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

html.ipad .common-boxError .common-boxError__pattern-1 .-button:hover:before {
  background-color: transparent !important;
}

.common-boxError .common-boxError__pattern-2 .-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 10px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 50px;
  color: #fff;
  font-size: 16px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #ba955b;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .common-boxError .common-boxError__pattern-2 .-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    z-index: 2;
  }
  .common-boxError .common-boxError__pattern-2 .-button:hover:before {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@media screen and (min-width: 768px) {
  .common-boxError .common-boxError__pattern-2 .-button {
    width: 370px;
  }
}

@media screen and (min-width: 768px) {
  .common-boxError .common-boxError__pattern-2 .-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

html.ipad .common-boxError .common-boxError__pattern-2 .-button:hover {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

html.ipad .common-boxError .common-boxError__pattern-2 .-button:hover:before {
  background-color: transparent !important;
}

.common-boxError .common-boxError__pattern-4 .p01 {
  margin-bottom: 0;
}

/***************************************************
.overlay
***************************************************/
.overlay-common,
.overlay-header-category {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 15;
}

/***************************************************
.textError
***************************************************/
.-textError {
  margin-top: 3px;
  color: #f00;
  font-size: 12px;
}

/***************************************************
.is-disable
***************************************************/
.is-disable {
  color: #999 !important;
  pointer-events: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: #ddd !important;
}
