@charset "UTF-8";
/*
 * project name
*/
@import url("https://use.fontawesome.com/releases/v5.10.2/css/all.css");
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*==　ハンバーガーメニュー　==*/
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");
@import url("https://fonts.googleapis.com/css?family=Archivo");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700");
@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Oswald:400,700");
.menuBtn {
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 9999;
}
.menuBtn span {
  width: 26px;
  height: 1px;
  display: block;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  margin-top: -1px;
  position: relative;
  background: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.menuBtn span:before, .menuBtn span:after {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  content: "";
  width: 13px;
  height: 1px;
  display: block;
  background: #FFF;
  position: absolute;
}
.menuBtn span:before {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}
.menuBtn span:after {
  -webkit-transform: translateX(13px);
          transform: translateX(13px);
  opacity: 1;
}
.menuBtn span.top {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.menuBtn span.middle {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.menuBtn span.bottom {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.is-open.menuBtn span:before, .is-open.menuBtn span:after {
  background: #FFF;
}
.is-open.menuBtn span.middle:before {
  -webkit-transform: translateX(-13px);
          transform: translateX(-13px);
  opacity: 0;
}
.is-open.menuBtn span.middle:after {
  -webkit-transform: translateX(39px);
          transform: translateX(39px);
  opacity: 0;
}
.is-open.menuBtn span.top {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.is-open.menuBtn span.top:before {
  -webkit-transform: translateX(2px) rotate(45deg);
          transform: translateX(2px) rotate(45deg);
}
.is-open.menuBtn span.top:after {
  -webkit-transform: translateX(11px) rotate(-45deg);
          transform: translateX(11px) rotate(-45deg);
}
.is-open.menuBtn span.bottom {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.is-open.menuBtn span.bottom:before {
  -webkit-transform: translateX(2px) rotate(-45deg);
          transform: translateX(2px) rotate(-45deg);
}
.is-open.menuBtn span.bottom:after {
  -webkit-transform: translateX(11px) rotate(45deg);
          transform: translateX(11px) rotate(45deg);
}
/*==　ページスクロール　==*/
#pageScroll {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#pageScroll a {
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  background: #000;
  padding: 10px 0 0;
  border-radius: 2px 2px 0 0;
  color: #FFF;
}
#pageScroll a i {
  font-size: 116%;
  color: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#pageScroll a:hover i {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.fixed#pageScroll {
  bottom: 40px;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 896px) {
  /*==　ページスクロール　==*/
  #pageScroll {
    right: 15px;
    -webkit-transition: none;
    transition: none;
    z-index: 1;
  }
  #pageScroll a:hover svg {
    -webkit-transform: none;
            transform: none;
  }
  .fixed#pageScroll {
    bottom: 20px;
  }
}
.boxBtnA {
  background: #FF8D02;
  display: block;
  text-align: center;
  color: #FFF;
  padding: 30px 0;
  position: relative;
  border-radius: 0;
}
.boxBtnA::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  position: absolute;
  font-size: 70%;
  top: 50%;
  right: 20px;
  margin: -20px 0 0;
}
.boxBtnA:hover {
  background: #faa338;
  color: #FFF;
}

.boxBtnB {
  display: block;
  background: #FF8D02;
  text-align: center;
  color: #FFF;
  padding: 18px 0;
  font-size: 108%;
  position: relative;
  border-radius: 0;
}
.boxBtnB::before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  position: absolute;
  font-size: 70%;
  top: 50%;
  left: 20px;
  margin: -11px 0 0;
}
.boxBtnB:hover {
  color: #FFF;
  background: #faa338;
}

.arrowBtn a {
  position: relative;
  padding: 0 24px 10px 0;
}
.arrowBtn a span.arrow {
  text-align: center;
  width: 15px;
  height: 15px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -14px 0 0;
}
.arrowBtn a span.arrow::before, .arrowBtn a span.arrow::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  font-size: 70%;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
}
.arrowBtn a span.arrow::after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.arrowBtn a:hover span.arrow::before {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.arrowBtn a:hover span.arrow::after {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (max-width: 896px) {
  .boxBtnA {
    padding: 14px 0;
    font-size: 100%;
  }
  .boxBtnA::before {
    right: 12px;
    margin: -12px 0 0;
  }
}
a.post-edit-link {
  display: block;
  padding: 15px 0;
  text-align: center;
  background: #222;
  color: #FFF;
}
a.post-edit-link:hover {
  background: #333;
  color: #FFF;
}

.wp-pagenavi {
  text-align: center;
  font-size: 100%;
  margin: 80px auto 0;
}
.wp-pagenavi span.current {
  background: #FF8D02;
  color: #FFF;
  padding: 10px 14px;
  border-radius: 20px;
  margin: 0 3px;
}
.wp-pagenavi a.page {
  font-size: 100%;
  background: #F0F0F0;
  color: #000;
  padding: 10px 14px;
  border-radius: 20px;
  margin: 0 3px;
}
.wp-pagenavi a.page:hover {
  background: #faa338;
  color: #FFF;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  font-size: 85%;
  color: #FF8D02;
  margin: 0 5px;
  padding: 8px;
  position: relative;
  border: none;
}
.wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.nextpostslink:hover {
  color: #faa338;
}

.entryBtnWrap {
  position: relative;
  height: 60px;
  width: 100%;
  margin: 60px auto 0;
  padding: 0;
}
.entryBtnWrap p {
  position: absolute;
  top: 0;
}
.entryBtnWrap p a {
  color: #FF8D02;
  font-size: 100%;
  background: none;
  display: block;
  text-align: center;
  padding: 16px 0;
  position: relative;
}
.entryBtnWrap p a:after {
  position: absolute;
}
.entryBtnWrap p.prevBtn, .entryBtnWrap p.nextBtn {
  width: 25%;
}
.entryBtnWrap p.prevBtn a:hover, .entryBtnWrap p.nextBtn a:hover {
  color: #faa338;
}
.entryBtnWrap p.prevBtn a::after, .entryBtnWrap p.nextBtn a::after {
  top: 50%;
  margin: -12px 0 0;
}
.entryBtnWrap p.prevBtn {
  left: 0;
}
.entryBtnWrap p.prevBtn a {
  padding: 16px 0 16px 12px;
}
.entryBtnWrap p.prevBtn a::after {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 12px;
}
.entryBtnWrap p.nextBtn {
  right: 0;
}
.entryBtnWrap p.nextBtn a {
  padding: 16px 12px 16px 0;
}
.entryBtnWrap p.nextBtn a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
}
.entryBtnWrap p.backIndexBtn {
  left: 50%;
  width: 30%;
  margin: 0 0 0 -15%;
}
.entryBtnWrap p.backIndexBtn a {
  text-align: center;
  color: #FFF;
  background: #FF8D02;
  border-radius: 2px;
}
.entryBtnWrap p.backIndexBtn a:hover {
  background: #FF8D02;
  color: #FFF;
}

.editer .alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.editer .alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.editer .aligncenter {
  width: auto;
  max-width: 100%;
  text-align: center;
  margin: 20px auto;
  display: block;
}
.editer p {
  padding: 0 0 15px;
  font-size: 108%;
}
.editer p a {
  text-decoration: underline;
}
.editer p a:hover {
  text-decoration: none;
}
.editer h4, .editer h5, .editer h6 {
  margin: 0 0 15px 0;
  padding: 0;
  font-weight: bold;
}
.editer h4 {
  font-size: 200%;
}
.editer h5 {
  font-size: 177%;
}
.editer h6 {
  font-size: 154%;
}
.editer ul, .editer ol {
  padding: 0 0 0 1.8em;
  margin: 0 0 25px 0;
}
.editer ul li, .editer ol li {
  font-size: 108%;
  margin: 0 0 5px 0;
}
.editer ul li {
  list-style: disc;
}
.editer ol li {
  list-style: decimal;
}
.editer hr {
  display: block;
  width: 100%;
  height: 1px;
  background: #DDD;
  border: none;
  margin: 30px 0;
}
.editer .youtube {
  position: relative;
  max-width: 100%;
  padding-top: 56.25%;
  margin: 0 0 30px;
}
.editer .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.editer img {
  width: auto;
  height: auto;
  max-width: 100%;
  text-align: left;
  margin: 20px 0;
  display: block;
}
.editer table {
  width: 100%;
}
.editer table tr {
  border-bottom: 1px solid #DDD;
}
.editer table tr:first-of-type {
  border-top: 1px solid #DDD;
}
.editer table tr:nth-child(odd) {
  background: #F9F9F9;
}
.editer table tr th, .editer table tr td {
  padding: 10px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin: 0px;
  display: block;
}
.mw_wp_form input[type=text],
.mw_wp_form input[type=tel],
.mw_wp_form input[type=email] {
  padding: 8px;
  font-size: 116%;
  color: #333;
  border: 1px solid #CCC;
}
.mw_wp_form input[type=text]:-moz-placeholder-shown, .mw_wp_form input[type=tel]:-moz-placeholder-shown, .mw_wp_form input[type=email]:-moz-placeholder-shown {
  color: #CCC;
}
.mw_wp_form input[type=text]:-ms-input-placeholder, .mw_wp_form input[type=tel]:-ms-input-placeholder, .mw_wp_form input[type=email]:-ms-input-placeholder {
  color: #CCC;
}
.mw_wp_form input[type=text]:placeholder-shown,
.mw_wp_form input[type=tel]:placeholder-shown,
.mw_wp_form input[type=email]:placeholder-shown {
  color: #CCC;
}
.mw_wp_form input[type=text]::-webkit-input-placeholder,
.mw_wp_form input[type=tel]::-webkit-input-placeholder,
.mw_wp_form input[type=email]::-webkit-input-placeholder {
  color: #CCC;
}
.mw_wp_form input[type=text]:-moz-placeholder,
.mw_wp_form input[type=tel]:-moz-placeholder,
.mw_wp_form input[type=email]:-moz-placeholder {
  color: #CCC;
  opacity: 1;
}
.mw_wp_form input[type=text]::-moz-placeholder,
.mw_wp_form input[type=tel]::-moz-placeholder,
.mw_wp_form input[type=email]::-moz-placeholder {
  color: #CCC;
  opacity: 1;
}
.mw_wp_form input[type=text]:-ms-input-placeholder,
.mw_wp_form input[type=tel]:-ms-input-placeholder,
.mw_wp_form input[type=email]:-ms-input-placeholder {
  color: #CCC;
}
.mw_wp_form input.sizeXxs {
  width: 15%;
}
.mw_wp_form input.sizeXs {
  width: 25%;
}
.mw_wp_form input.sizeS {
  width: 50%;
}
.mw_wp_form input.sizeM {
  width: 65%;
}
.mw_wp_form input.sizeL {
  width: 80%;
}
.mw_wp_form input.sizeXl {
  width: 100%;
}
.mw_wp_form textarea {
  width: 100%;
  height: 200px;
  padding: 8px;
  font-size: 116%;
  border: 1px solid #CCC;
  color: #333;
}
.mw_wp_form input::-moz-selection, .mw_wp_form textarea::-moz-selection {
  background: #666;
  color: #FFF;
}
.mw_wp_form input::selection,
.mw_wp_form textarea::selection {
  background: #666;
  color: #FFF;
}
.mw_wp_form input:focus,
.mw_wp_form textarea:focus {
  outline: 0;
  border: 1px solid #000;
}
.mw_wp_form input:focus::-webkit-input-placeholder, .mw_wp_form textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.mw_wp_form input:focus::-moz-placeholder, .mw_wp_form textarea:focus::-moz-placeholder {
  color: transparent;
}
.mw_wp_form input:focus:-ms-input-placeholder, .mw_wp_form textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.mw_wp_form input:focus::-ms-input-placeholder, .mw_wp_form textarea:focus::-ms-input-placeholder {
  color: transparent;
}
.mw_wp_form input:focus::placeholder,
.mw_wp_form textarea:focus::placeholder {
  color: transparent;
}
.mw_wp_form span.mwform-checkbox-field {
  display: block;
}
.mw_wp_form label {
  display: block;
  margin: 0;
}
.mw_wp_form label input[type=checkbox],
.mw_wp_form label input[type=radio] {
  margin: 0 8px 0 0;
  outline: none;
}
.mw_wp_form .select-wrap {
  width: auto;
  position: relative;
  border: 1px solid #CCC;
}
.mw_wp_form .select-wrap::before {
  content: "\f0dc";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  position: absolute;
  font-size: 70%;
  top: 10px;
  right: 10px;
  color: #999;
  z-index: 1;
}
.mw_wp_form select {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  height: 40px;
  padding: 8px 12px;
  width: 100%;
  border-radius: 3px;
  font-size: 116%;
  position: relative;
}
.mw_wp_form select option {
  background-color: #fff;
}
.mw_wp_form select::-ms-expand {
  display: none;
}
.mw_wp_form select:-moz-focusring {
  text-shadow: 0 0 0 #828c9a;
}
.mw_wp_form span.error {
  color: #e60012;
  font-weight: bold;
  font-size: 77%;
  display: block;
  padding: 5px 0 0;
}

.mw_wp_form table {
  width: 100%;
}
.mw_wp_form table tbody tr {
  border-top: 1px solid #DDD;
}
.mw_wp_form table tbody tr th, .mw_wp_form table tbody tr td {
  padding: 14px 1em;
}
.mw_wp_form table tbody tr th {
  width: 30%;
  font-size: 100%;
  text-align: left;
}
.mw_wp_form table tbody tr td {
  width: 70%;
}

.mw_wp_form_input table tbody tr th span.hissu {
  display: inline-block;
  color: #FFF;
  font-size: 10px;
  padding: 1px 6px;
  margin-left: 10px;
  background: #FF8D02;
  border-radius: 5px;
}
.mw_wp_form_input table tbody tr th span.cap {
  display: block;
  font-size: 12px;
}
.mw_wp_form_input table tbody tr td span.age {
  margin: 0 8px;
}
.mw_wp_form_input table tbody tr td span.captionTxt {
  display: block;
  font-size: 85%;
  color: #c40e0e;
  margin: 5px 0 0;
}
.mw_wp_form_input p.underTxt {
  text-align: center;
  font-size: 85%;
  color: #666;
}

.mw_wp_form_confirm table tbody tr th span.hissu {
  display: none;
}
.mw_wp_form_confirm table tbody tr th span.cap {
  display: none;
}
.mw_wp_form_confirm table tbody tr td span.age {
  margin: 0 8px;
}
.mw_wp_form_confirm table tbody tr td span.captionTxt {
  display: none;
}
.mw_wp_form_confirm table tbody tr td .select-wrap {
  border: none;
}
.mw_wp_form_confirm table tbody tr td .select-wrap::before {
  display: none;
}
.mw_wp_form_confirm p.underTxt {
  display: none;
}

.inputBtnArea {
  text-align: center;
  margin: 30px 0 0;
}
.inputBtnArea input[type=button],
.inputBtnArea input[type=submit] {
  padding: 18px 0;
  text-align: center;
  font-size: 116%;
  cursor: pointer;
  width: 33%;
  font-weight: normal;
  border: none;
  border-radius: 10px;
}
.inputBtnArea input[type=submit] {
  background: #e60012;
  color: #FFF;
  margin: 0 0 0 10px;
}
.inputBtnArea input[type=submit]:hover {
  background: #ad000e;
}
.inputBtnArea input.back {
  background: #999;
  color: #FFF;
  margin: 0 10px 0 0;
}
.inputBtnArea input.back:hover {
  background: #CCC;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 896px) {
  .wp-pagenavi {
    margin: 40px auto 0;
  }
  .entryBtnWrap {
    height: 50px;
    margin: 40px 0 0;
  }
  .entryBtnWrap p a {
    font-size: 85%;
    background: none;
    padding: 12px 0;
  }
  .entryBtnWrap p.prevBtn, .entryBtnWrap p.nextBtn {
    width: 33.3333%;
  }
  .entryBtnWrap p.prevBtn a, .entryBtnWrap p.nextBtn a {
    background: none;
  }
  .entryBtnWrap p.prevBtn a:hover, .entryBtnWrap p.nextBtn a:hover {
    background: none;
  }
  .entryBtnWrap p.backIndexBtn {
    width: 33.3333%;
    margin: 0 0 0 -16.6666%;
  }
  .editer {
    padding: 0 5%;
  }
  .editer p {
    font-size: 100%;
    line-height: 1.6;
  }
  .editer h4 {
    font-size: 154%;
  }
  .editer h5 {
    font-size: 131%;
  }
  .editer h6 {
    font-size: 116%;
  }
  .editer ul li, .editer ol li {
    font-size: 100%;
  }
  .editer img {
    margin: 10px 0;
  }
  .mw_wp_form input[type=text],
  .mw_wp_form input[type=tel],
  .mw_wp_form input[type=email] {
    padding: 5px;
  }
  .mw_wp_form input.sizeXs {
    width: 50%;
  }
  .mw_wp_form input.sizeS {
    width: 100%;
  }
  .mw_wp_form input.sizeM {
    width: 100%;
  }
  .mw_wp_form input.sizeL {
    width: 100%;
  }
  .mw_wp_form input.sizeXl {
    width: 100%;
  }
  .mw_wp_form textarea {
    height: 160px;
    padding: 5px;
  }
  .mw_wp_form input::-moz-selection, .mw_wp_form textarea::-moz-selection {
    background: #666;
    color: #FFF;
  }
  .mw_wp_form input::selection,
  .mw_wp_form textarea::selection {
    background: #666;
    color: #FFF;
  }
  .mw_wp_form input:focus,
  .mw_wp_form textarea:focus {
    outline: 0;
    border: 1px solid #333;
  }
  .mw_wp_form input:focus::-webkit-input-placeholder, .mw_wp_form textarea:focus::-webkit-input-placeholder {
    color: transparent;
  }
  .mw_wp_form input:focus::-moz-placeholder, .mw_wp_form textarea:focus::-moz-placeholder {
    color: transparent;
  }
  .mw_wp_form input:focus:-ms-input-placeholder, .mw_wp_form textarea:focus:-ms-input-placeholder {
    color: transparent;
  }
  .mw_wp_form input:focus::-ms-input-placeholder, .mw_wp_form textarea:focus::-ms-input-placeholder {
    color: transparent;
  }
  .mw_wp_form input:focus::placeholder,
  .mw_wp_form textarea:focus::placeholder {
    color: transparent;
  }
  .mw_wp_form select {
    width: 100%;
  }
  .mw_wp_form select {
    border: none;
  }
  .mw_wp_form table {
    width: 100%;
  }
  .mw_wp_form table tbody tr {
    border-top: 1px solid #DDD;
  }
  .mw_wp_form table tbody tr th, .mw_wp_form table tbody tr td {
    display: block;
    padding: 12px 3%;
  }
  .mw_wp_form table tbody tr th {
    background: #f5f5ef;
    width: 100%;
    font-size: 100%;
  }
  .mw_wp_form table tbody tr td {
    width: 100%;
  }
  .mw_wp_form_input table tbody tr th span.hissu {
    padding: 1px 5px;
    border-radius: 3px;
  }
  .mw_wp_form_input table tbody tr td span.age {
    margin: 0 6px;
  }
  .mw_wp_form_input table tbody tr td span.captionTxt {
    font-size: 77%;
  }
  .mw_wp_form_input p.underTxt {
    padding: 0 4%;
    text-align: left;
    font-size: 77%;
  }
  .mw_wp_form_confirm table tbody tr th span.hissu {
    display: none;
  }
  .mw_wp_form_confirm table tbody tr th span.cap {
    display: none;
  }
  .mw_wp_form_confirm table tbody tr td span.age {
    margin: 0 6px;
  }
  .mw_wp_form_confirm table tbody tr td span.captionTxt {
    display: none;
  }
  .mw_wp_form_confirm p.underTxt {
    display: none;
  }
  .inputBtnArea {
    padding: 0 4%;
    margin: 10px 0 0;
  }
  .inputBtnArea input[type=button],
  .inputBtnArea input[type=submit] {
    padding: 14px 0;
    font-size: 108%;
    width: 100%;
    border-radius: 5px;
  }
  .inputBtnArea input[type=submit] {
    margin: 10px 0 0;
  }
}
/*! normalize.css 2012-01-31T16:06 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */
audio:not([controls]) {
  display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */
body {
  margin: 0;
}

/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 * Fix IE6/7 heading font-size not being relative to the root font-size
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q {
  quotes: none;
}

/* 2 */
q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin-left: 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal; /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer; /* 1 */
  -webkit-appearance: button; /* 2 */
  *overflow: visible; /* 3 */
}

/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*====================================================================
  html, body
====================================================================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  padding: 0;
  color: #646464;
  font-family: "ヒラギノ角ゴ W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Helvetica Neue, Helvetica, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  *font-size: 108%;
  line-height: 1.8;
  word-spacing: 0;
  letter-spacing: 0em;
  background: #FFF;
}

::-moz-selection {
  background: #ebf1f2;
  color: #222;
}

::selection {
  background: #ebf1f2;
  color: #222;
}

img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

img.ofi {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

/* ======================================= */
/* common
/* ======================================= */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

ul, ol, dl, dt, dd, p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*==  アンカー　==*/
a {
  color: #FF8D02;
  text-decoration: none;
}
a:hover {
  color: #faa338;
  text-decoration: none;
}
.clearfix::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
  font-size: 0;
}

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

/* ======================================= */
/* メディアクエリ
/* ======================================= */
/*
フォントサイズ表 (base: 14px)
62% =  9px
70% =  10px
77% = 11px
85% = 12px   154% = 21px  231% = 31px
93% = 13px   162% = 22px  239% = 32px
100% = 14px  170% = 23px  247% = 33px
108% = 15px  177% = 24px  254% = 34px
116% = 16px  185% = 25px  262% = 35px
124% = 17px  193% = 26px  270% = 36px
131% = 18px  200% = 27px  277% = 37px
139% = 19px  208% = 28px  285% = 38px
147% = 20px  216% = 29px  293% = 39px
231% = 31px  224% = 30px  300% = 40px

メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/
header#siteHead {
  position: fixed;
  margin: 15px 0 0;
  width: 100%;
}
header#siteHead span#mat {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(#222), to(transparent));
  background: linear-gradient(to bottom, #222, transparent);
}
header#siteHead.headroom {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header#siteHead.headroom--unpinned {
  top: -100px;
}
header#siteHead.headroom--pinned {
  top: 0;
}
header#siteHead .inner {
  width: 1000px;
  border-bottom: 1px solid #FFF;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
header#siteHead .inner p#siteId {
  width: 180px;
}
header#siteHead .inner p#siteId a {
  display: block;
}
header#siteHead .inner p#siteId a:hover {
  opacity: 0.85;
}

.menuBtn {
  position: absolute;
  top: 20px;
  right: 0;
  display: block;
}
.menuBtn::before {
  content: "MENU";
  position: absolute;
  top: 13px;
  left: -50px;
  font-size: 93%;
  color: #FFF;
  font-weight: bold;
}

nav#openNav {
  width: 1000px;
  background: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  opacity: 0;
  padding: 30px 0;
  z-index: 9990;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
nav#openNav.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
nav#openNav.headroom {
  position: fixed;
  z-index: 9990;
  top: 50px;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav#openNav.headroom.active {
  top: 100px;
  z-index: 9998;
}
nav#openNav.headroom--unpinned {
  top: 50px;
}
nav#openNav.headroom--unpinned.active {
  top: 0px;
}
nav#openNav.headroom--pinned {
  top: 50px;
}
nav#openNav ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
nav#openNav ul li {
  margin: 0 18px;
}
nav#openNav ul li:first-child {
  margin: 0 18px 0 0;
}
nav#openNav ul li:last-child {
  margin: 0 0 0 18px;
}
nav#openNav ul li a {
  color: #FF8D02;
  font-size: 93%;
  font-weight: bold;
}
nav#openNav ul li a i {
  font-size: 70%;
  margin: 0 0 0 5px;
}
nav#openNav ul li a:hover {
  text-decoration: underline;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 820px) {
  header#siteHead {
    margin: 5px 0 0;
  }
  header#siteHead.headroom--unpinned {
    top: -85px;
  }
  header#siteHead span#mat {
    top: -50px;
    left: 0;
    width: 100%;
    z-index: 0;
    height: 150px;
  }
  header#siteHead .inner {
    width: 100%;
    padding: 12px 4%;
  }
  header#siteHead .inner p#siteId {
    width: 120px;
  }
  .menuBtn {
    top: 0px;
    right: 0%;
  }
  .menuBtn::before {
    top: 16px;
    left: -40px;
    font-size: 77%;
  }
  nav#openNav {
    width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
  }
  nav#openNav.headroom {
    position: fixed;
    z-index: 9996;
    top: -180px;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  nav#openNav.headroom.active {
    top: 55px;
  }
  nav#openNav.headroom--unpinned {
    top: -180px;
  }
  nav#openNav.headroom--unpinned.active {
    top: -180px;
  }
  nav#openNav.headroom--pinned {
    top: -180px;
  }
  nav#openNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  nav#openNav ul li {
    width: 50%;
    margin: 0;
    border-bottom: 1px solid #DDD;
  }
  nav#openNav ul li:nth-child(odd) {
    border-right: 1px solid #DDD;
  }
  nav#openNav ul li:first-child {
    margin: 0;
  }
  nav#openNav ul li:last-child {
    margin: 0;
  }
  nav#openNav ul li a {
    font-weight: normal;
    font-size: 85%;
    text-align: center;
    display: block;
    padding: 10px 0;
  }
}
/*
フォントサイズ表 (base: 15px)
62% = 10px
70% = 11px
77% = 12px
85% = 13px   162% = 23px  239% = 33px
93% = 14px   170% = 24px  247% = 34px
100% = 15px  177% = 25px  254% = 35px
108% = 16px  185% = 26px  262% = 36px
116% = 17px  193% = 27px  270% = 37px
124% = 18px  200% = 28px  277% = 38px
131% = 19px  208% = 29px  285% = 39px
139% = 20px  216% = 30px  293% = 40px
147% = 21px  224% = 31px  300% = 41px
154% = 22px  231% = 32px  308% = 42px


メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/
footer {
  background: #F0F0F0;
}
footer p {
  background: #646464;
  padding: 80px 0;
}
footer p a {
  width: 1000px;
  margin: 0 auto;
  display: block;
  background: #FF8D02;
  color: #FFF;
  font-size: 200%;
  font-weight: bold;
}
footer address {
  padding: 14px 0;
  text-align: center;
  color: #BCBCBC;
  font-size: 63%;
  font-style: normal;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 820px) {
  footer p {
    padding: 20px 0;
  }
  footer p a {
    width: 92%;
    margin: 0 auto;
  }
  footer address {
    padding: 12px 0 30px;
  }
}
/*
フォントサイズ表 (base: 14px)
62% = 9px
70% = 10px
77% = 11px   154% = 21px
85% = 12px   162% = 22px  239% = 32px
93% = 13px   170% = 23px  247% = 33px
100% = 14px  177% = 24px  254% = 34px
108% = 15px  185% = 25px  262% = 35px
116% = 16px  193% = 26px  270% = 36px
124% = 17px  200% = 27px  277% = 37px
131% = 18px  208% = 28px  285% = 38px
139% = 19px  216% = 29px  293% = 39px
147% = 20px  224% = 30px  300% = 40px
154% = 21px  231% = 31px  308% = 41px

メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/
main div.inner {
  width: 1000px;
  margin: 0 auto;
}
main h2 {
  position: relative;
  width: 1000px;
  font-size: 277%;
  color: #FF8D02;
  text-align: center;
  margin: 0 auto 20px;
  letter-spacing: 0.16em;
}
main .captionTxt {
  font-size: 85%;
}

.parallax-window {
  min-height: 100vh;
}

#top {
  margin: 0 0 100px;
}
#top .topBg {
  position: relative;
  width: 100vw;
  min-height: 500px;
  height: 100vh;
  overflow: hidden;
}
#top .topBg .slider {
  height: 100%;
  z-index: 1;
}
#top .topBg .slider-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: slider 35s infinite;
          animation: slider 35s infinite;
}
#top .topBg .slider-items:nth-child(1) {
  background: url("/assets/img/home/top/slide01.jpg") no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  opacity: 1;
}
#top .topBg .slider-items:nth-child(2) {
  background: url("/assets/img/home/top/slide02.jpg") no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  opacity: 0;
}
#top .topBg .slider-items:nth-child(3) {
  background: url("/assets/img/home/top/slide03.jpg") no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
  opacity: 0;
}
#top .topBg .slider-items:nth-child(4) {
  background: url("/assets/img/home/top/slide04.jpg") no-repeat center center;
  background-size: cover;
  -webkit-animation-delay: 21s;
          animation-delay: 21s;
  opacity: 0;
}
#top .topBg #copyWrap {
  width: 100%;
  position: absolute;
  top: 200px;
  left: 50%;
  margin: 0 0 0 50px;
  z-index: 2;
}
#top .topBg #copyWrap #copyWrapInner {
  position: relative;
  width: 100%;
}
#top .topBg #copyWrap #copyWrapInner p.copy {
  text-align: right;
  font-size: 200%;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
}
#top .topBg #copyWrap #copyWrapInner p.copy span {
  background: #FFF;
  padding: 10px;
}
#top .topBg #copyWrap #copyWrapInner p.copy:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}
#top .topBg #copyWrap #copyWrapInner p.copy:nth-child(2) {
  position: absolute;
  top: 0;
  left: 240px;
}
#top .topBg #copyWrap #copyWrapInner p.copy:nth-child(3) {
  position: absolute;
  top: 60px;
  left: 0;
}

@-webkit-keyframes slider {
  0% {
    opacity: 0;
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slider {
  0% {
    opacity: 0;
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#recruitLists {
  border-top: 1px solid #646464;
  margin: 0 0 200px;
}
#recruitLists h2 {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  font-size: 316%;
  position: relative;
}
#recruitLists h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/joblist/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -7px;
  left: 0;
}
#recruitLists .recruitBox {
  letter-spacing: 0.1em;
}
#recruitLists .recruitBox .inner {
  width: 90%;
  margin: 0 auto;
  background-color: #efefef;
  padding: 30px 0 80px;
}
#recruitLists .recruitBox .inner h3 {
  text-align: center;
  font-size: 377%;
  margin: 0 0 20px;
}
#recruitLists .midCareer {
  margin: 0 0 50px;
}
#recruitLists .midCareer p.btn {
  width: 1000px;
  margin: 0 auto;
}
#recruitLists .midCareer p.btn a {
  display: block;
  text-align: center;
  background-color: #FF8D02;
  color: white;
  padding: 14px 0;
  font-size: 316%;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: relative;
}
#recruitLists .midCareer p.btn a:hover {
  background-color: #faa338;
}
#recruitLists .midCareer p.btn a::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("../img/common/icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#recruitLists .newGraduate .row {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5%;
}
#recruitLists .newGraduate .row .box {
  width: 380px;
  text-align: center;
  padding: 20px 5px 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  color: #FFF;
}
#recruitLists .newGraduate .row .box-titleEn {
  letter-spacing: 0.3em;
  font-size: 85%;
  font-weight: bold;
  margin: 0 0 10px;
}
#recruitLists .newGraduate .row .box-img {
  width: 70%;
  margin: 0 auto;
}
#recruitLists .newGraduate .row .box-title {
  font-size: 277%;
}
#recruitLists .newGraduate .row .box-txt {
  letter-spacing: 0.01em;
  font-size: 85%;
  padding: 0 4%;
  margin: 0 0 15px;
}
#recruitLists .newGraduate .row .box-btn a {
  display: block;
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(85%, #ebebeb));
  background-image: linear-gradient(180deg, #ffffff 0%, #ebebeb 85%);
  position: relative;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 14px 0;
  font-size: 131%;
  font-weight: bold;
  letter-spacing: 0.01em;
}
#recruitLists .newGraduate .row .box-btn a:hover {
  opacity: 0.8;
}
#recruitLists .newGraduate .row .box-btn a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#recruitLists .newGraduate .row .box.nurse {
  background-color: #ff92a1;
}
#recruitLists .newGraduate .row .box.nurse .box-btn a {
  color: #ff435d;
}
#recruitLists .newGraduate .row .box.nurse .box-btn a::after {
  background-image: url("../img/home/list/icon-arrow_nurse.svg");
}
#recruitLists .newGraduate .row .box.care {
  background-color: #98d475;
}
#recruitLists .newGraduate .row .box.care .box-btn a {
  color: #64b02d;
}
#recruitLists .newGraduate .row .box.care .box-btn a::after {
  background-image: url("../img/home/list/icon-arrow_care.svg");
}
#recruitLists .newGraduate .row .box.therapist {
  background-color: #63adec;
}
#recruitLists .newGraduate .row .box.therapist .box-btn a {
  color: #0c67cd;
}
#recruitLists .newGraduate .row .box.therapist .box-btn a::after {
  background-image: url("../img/home/list/icon-arrow_therapist.svg");
}
#recruitLists .newGraduate ul {
  width: 1000px;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 4%;
}
#recruitLists .newGraduate ul li {
  width: 48%;
  background-color: white;
  padding: 10px 10px 10px 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#recruitLists .newGraduate ul li span {
  font-size: 177%;
  font-weight: bold;
}
#recruitLists .newGraduate ul li a {
  width: 180px;
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(85%, #ebebeb));
  background-image: linear-gradient(180deg, #ffffff 0%, #ebebeb 85%);
  position: relative;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 10px 1em;
  font-size: 116%;
  font-weight: bold;
  letter-spacing: 0.01em;
}
#recruitLists .newGraduate ul li a:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#recruitLists .newGraduate ul li a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../img/home/list/icon-arrow_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#recruitLists .newGraduate figure.bnr {
  width: 1000px;
  margin: 0 auto;
}
#recruitLists .newGraduate figure.bnr a:hover {
  opacity: 0.75;
}

#greeting {
  position: relative;
  padding: 0 0 200px;
}
#greeting::before {
  content: "";
  display: block;
  background: url("/assets/img/home/greeting/bg.png") no-repeat;
  background-size: contain;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 200px;
  left: -30px;
  z-index: -1;
}
#greeting::after {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background-color: #efefef;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}
#greeting div.inner h2 {
  padding: 80px 0 40px;
  position: relative;
}
#greeting div.inner h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/greeting/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -7px;
  left: 0;
}
#greeting div.inner p {
  text-align: center;
  font-size: 108%;
  font-weight: bold;
  line-height: 2;
  margin: 24px 0 0;
}
#greeting div.inner ul {
  width: 800px;
  margin: 80px auto 0;
  padding: 80px 5% 0;
  border-top: 1px solid #646464;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px 0;
}
#greeting div.inner ul li {
  width: 30%;
  text-align: center;
  border-right: 5px solid #E5E5E5;
}
#greeting div.inner ul li:nth-of-type(3n+1) {
  border-left: 5px solid #E5E5E5;
}
#greeting div.inner ul li p {
  font-size: 116%;
  line-height: 1.3;
  margin: 0 0 20px;
  min-height: 50px;
}
#greeting div.inner ul li figure img {
  height: 240px;
  width: auto;
}
#greeting div.inner ul li span {
  display: inline-block;
  margin: 10px 0 0;
  font-weight: bold;
  font-size: 93%;
}

#flow {
  position: relative;
  padding: 80px 0 140px;
}
#flow h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/flow/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -87px;
  left: 0;
}
#flow .inner .itemWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#flow .inner .itemWrap .item {
  width: 31%;
  height: 350px;
  margin: 0 1%;
  background: url("/assets/img/home/flow/item_bg.png") no-repeat;
  background-size: 100%;
  padding: 40px 0;
}
#flow .inner .itemWrap .item p.number {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
  font-size: 216%;
  font-weight: bold;
  margin: 0 0 5px;
}
#flow .inner .itemWrap .item figure {
  text-align: center;
  margin: 0 0 20px;
}
#flow .inner .itemWrap .item figure img {
  height: 90px;
  width: auto;
}
#flow .inner .itemWrap .item div {
  text-align: center;
}
#flow .inner .itemWrap .item div p.itemTitle {
  font-weight: bold;
  font-size: 131%;
  margin: 0 0 5px;
}
#interview {
  background: url("/assets/img/home/interview/bg.png");
  position: relative;
  padding: 80px 0 360px;
}
#interview h2 {
  z-index: 1;
  margin: 0 auto 40px;
}
#interview h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/interview/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -87px;
  left: 0;
}
#interview #interviewList article {
  position: relative;
  margin: 300px 0 0;
}
#interview #interviewList article:nth-of-type(1) {
  margin: 0;
}
#interview #interviewList article:nth-of-type(1)::before {
  content: "";
  display: block;
  width: 90%;
  height: 600px;
  background-color: #FFD1AA;
  position: absolute;
  top: -195px;
  left: 0;
  z-index: 0;
}
#interview #interviewList article:nth-of-type(1)::after {
  content: "";
  display: block;
  -webkit-transform: skewY(-8deg);
          transform: skewY(-8deg);
  width: 90%;
  height: 300px;
  background-color: #FFD1AA;
  position: absolute;
  top: 250px;
  left: 0;
  z-index: 0;
}
#interview #interviewList article:nth-of-type(2) {
  margin: 400px 0 0;
}
#interview #interviewList article:nth-of-type(3) {
  margin: 400px 0 0;
}
#interview #interviewList article:nth-of-type(3)::after {
  content: "";
  display: block;
  -webkit-transform: skewY(-8deg);
          transform: skewY(-8deg);
  width: 90%;
  height: 650px;
  background-color: #FFD1AA;
  position: absolute;
  top: -150px;
  right: 0;
  z-index: 0;
}
#interview #interviewList article:nth-of-type(4) {
  margin: 400px 0 0;
}
#interview #interviewList article:nth-of-type(5) {
  margin: 400px 0 0;
}
#interview #interviewList article:nth-of-type(5)::after {
  content: "";
  display: block;
  -webkit-transform: skewY(-8deg);
          transform: skewY(-8deg);
  width: 90%;
  height: 700px;
  background-color: #FFD1AA;
  position: absolute;
  top: -150px;
  left: 0;
  z-index: 0;
}
#interview #interviewList article .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
#interview #interviewList article .inner .imgWrap {
  width: 70%;
  position: relative;
}
#interview #interviewList article .inner .imgWrap figure.sImg {
  position: absolute;
  top: 0;
  width: 580px;
}
#interview #interviewList article .inner .imgWrap figure.sImg img {
  border: 5px solid #E8E5E2;
}
#interview #interviewList article .inner .imgWrap figure.hImg {
  position: absolute;
  top: 80px;
}
#interview #interviewList article .inner .imgWrap figure.hImg img {
  height: 350px;
  width: auto;
}
#interview #interviewList article .inner .imgWrap p.job {
  width: 160px;
  position: absolute;
}
#interview #interviewList article .inner .txtWrap {
  width: 28%;
  position: relative;
  padding: 40px 0 0;
}
#interview #interviewList article .inner .txtWrap p.number {
  position: absolute;
  top: -80px;
  right: 0;
}
#interview #interviewList article .inner .txtWrap p.number img {
  height: 70px;
  width: auto;
}
#interview #interviewList article .inner .txtWrap p.copy {
  margin: 0 0 20px;
}
#interview #interviewList article .inner .txtWrap p.year {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#interview #interviewList article .inner .txtWrap p.name {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 154%;
  margin: 0 0 5px;
}
#interview #interviewList article .inner .txtWrap p.btn a {
  font-size: 116%;
  font-weight: bold;
  color: #828282;
}
#interview #interviewList article .inner .txtWrap p.btn a i {
  margin: 0 0 0 0.6em;
}
#interview #interviewList article .inner .txtWrap p.btn a:hover {
  color: #FF8D02;
}
#interview #interviewList article.imgLeft .inner .imgWrap figure.sImg {
  left: 0;
}
#interview #interviewList article.imgLeft .inner .imgWrap figure.hImg {
  right: 0;
}
#interview #interviewList article.imgLeft .inner .imgWrap p.job {
  top: 340px;
  left: 35px;
}
#interview #interviewList article.imgRight .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#interview #interviewList article.imgRight .inner .imgWrap figure.sImg {
  right: 0;
}
#interview #interviewList article.imgRight .inner .imgWrap figure.hImg {
  left: 0;
}
#interview #interviewList article.imgRight .inner .imgWrap p.job {
  top: -120px;
  right: 35px;
}

#careerUp {
  position: relative;
  padding: 80px 0;
}
#careerUp::before {
  content: "";
  display: block;
  background: #F0F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#careerUp h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/career/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -87px;
  left: 0;
}
#careerUp div.inner div.itemWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -5%;
}
#careerUp div.inner div.itemWrap div.item {
  width: 45%;
  margin: 40px 0 0 5%;
}
#careerUp div.inner div.itemWrap div.item:nth-of-type(1), #careerUp div.inner div.itemWrap div.item:nth-of-type(2) {
  margin: 0 0 0 5%;
}
#careerUp div.inner div.itemWrap div.item figure {
  margin: 0 0 10px;
}
#careerUp div.inner div.itemWrap div.item div p.itemTitle {
  text-align: center;
  font-size: 131%;
  margin: 0 0 5px;
}
#welfare {
  position: relative;
  padding: 80px 0;
}
#welfare h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/welfare/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -87px;
  left: 0;
}
#welfare div.inner div.itemWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -5.3333%;
}
#welfare div.inner div.itemWrap .item {
  width: 28%;
  margin: 40px 0 0 5.3333%;
}
#welfare div.inner div.itemWrap .item:nth-of-type(1), #welfare div.inner div.itemWrap .item:nth-of-type(2), #welfare div.inner div.itemWrap .item:nth-of-type(3) {
  margin: 0 0 0 5.3333%;
}
#welfare div.inner div.itemWrap .item figure {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto 10px;
}
#welfare div.inner div.itemWrap .item div a {
  color: #646464;
  text-decoration: underline;
}
#welfare div.inner div.itemWrap .item dl {
  margin: 0 0 10px;
  border: 3px solid #646464;
}
#welfare div.inner div.itemWrap .item dl dt {
  text-align: center;
  font-weight: bold;
  font-size: 108%;
  padding: 5px 0;
  color: #FFF;
  background: #646464;
}
#welfare div.inner div.itemWrap .item dl dd {
  padding: 10px;
  font-size: 93%;
  border-top: 3px solid #646464;
}
#welfare div.inner div.itemWrap .item dl dd span {
  color: #FF8D02;
}

#movie {
  position: relative;
  padding: 100px 0;
}
#movie::before {
  content: "";
  display: block;
  background: #F0F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#movie div {
  width: 750px;
  margin: 0 auto;
}
#movie div div#iframeInner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#movie div div#iframeInner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

#ceo {
  padding: 60px 0 120px;
}
#ceo h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/ceo/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -67px;
  left: 0;
}
#ceo .inner {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#ceo .inner .msgImg {
  width: 26%;
}
#ceo .inner .msgTxt {
  width: 74%;
  padding: 0 4% 0 0;
}

#qa {
  border-top: 1px solid #646464;
  padding: 60px 0 120px;
}
#qa h2::before {
  content: "";
  display: block;
  background: url("/assets/img/home/qa/icon.svg") no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -67px;
  left: 0;
}
#qa div.inner dl {
  border: 4px solid #EDEDED;
  margin: 15px 0 0;
}
#qa div.inner dl:first-of-type {
  margin: 0;
}
#qa div.inner dl dt, #qa div.inner dl dd {
  padding: 20px;
}
#qa div.inner dl dt::after, #qa div.inner dl dd::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
  font-size: 0;
}
#qa div.inner dl dt span, #qa div.inner dl dd span {
  font-weight: bold;
  float: left;
  width: 5%;
  padding: 0 30px 0 0;
}
#qa div.inner dl dt p, #qa div.inner dl dd p {
  width: 95%;
  float: left;
}
#qa div.inner dl dt {
  cursor: pointer;
  font-size: 116%;
  background: #EDEDED;
  position: relative;
}
#qa div.inner dl dt:hover {
  background: #f5f4f4;
}
#qa div.inner dl dt::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  position: absolute;
  font-size: 70%;
  top: 50%;
  right: 20px;
  margin: -11px 0 0;
}
#qa div.inner dl dt.active::before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
}
#qa div.inner dl dd {
  display: none;
}
#qa div.inner dl dd span {
  float: left;
  color: #FF8D02;
  font-size: 116%;
}
#qa div.inner dl dd p {
  float: left;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 820px) {
  main div.inner {
    width: 100%;
    margin: 0;
    padding: 0 4%;
  }
  main h2 {
    position: relative;
    width: 100%;
    font-size: 154%;
    text-align: center;
    margin: 0 auto 15px;
    letter-spacing: 0.08em;
  }
  main .captionTxt {
    font-size: 85%;
  }
  .parallax-window {
    min-height: 75vh;
  }
  #top {
    height: 400px;
    margin: 0 0 50px;
  }
  #top .topBg {
    min-height: auto;
    height: 284px;
    z-index: 0;
    overflow: visible;
  }
  #top .topBg .slider {
    height: 100%;
  }
  #top .topBg #copyWrap {
    top: unset;
    bottom: -115px;
    left: 0%;
    margin: 0;
    z-index: 10;
  }
  #top .topBg #copyWrap #copyWrapInner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 3%;
  }
  #top .topBg #copyWrap #copyWrapInner p.copy {
    text-align: left;
    font-size: 154%;
    margin: 0 0 5px;
    color: #FFF;
  }
  #top .topBg #copyWrap #copyWrapInner p.copy span {
    padding: 8px;
    background: #FF8D02;
  }
  #top .topBg #copyWrap #copyWrapInner p.copy:nth-child(1) {
    position: static;
  }
  #top .topBg #copyWrap #copyWrapInner p.copy:nth-child(2) {
    position: static;
  }
  #top .topBg #copyWrap #copyWrapInner p.copy:nth-child(3) {
    position: static;
    margin: 0;
  }
  #recruitLists {
    margin: 0 0 80px;
  }
  #recruitLists h2 {
    width: 100%;
    margin: 0;
    padding: 30px 0 15px;
    font-size: 177%;
    position: relative;
  }
  #recruitLists h2::before {
    width: 100px;
    height: 50px;
    top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #recruitLists .recruitBox {
    letter-spacing: 0.1em;
  }
  #recruitLists .recruitBox .inner {
    width: 92%;
    margin: 0 auto;
    padding: 20px 0 40px;
  }
  #recruitLists .recruitBox .inner h3 {
    text-align: center;
    font-size: 154%;
    margin: 0 0 10px;
  }
  #recruitLists .midCareer {
    margin: 0 0 30px;
  }
  #recruitLists .midCareer p.btn {
    width: 90%;
    margin: 0 auto;
  }
  #recruitLists .midCareer p.btn a {
    padding: 12px 0;
    font-size: 116%;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  #recruitLists .midCareer p.btn a::after {
    width: 20px;
    height: 20px;
    right: 12px;
  }
  #recruitLists .newGraduate .row {
    width: 90%;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
  #recruitLists .newGraduate .row .box {
    width: 100%;
    text-align: center;
    padding: 20px 5px 5px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    color: #FFF;
  }
  #recruitLists .newGraduate .row .box-titleEn {
    font-size: 70%;
  }
  #recruitLists .newGraduate .row .box-img {
    width: 65%;
    margin: 0 auto 5px;
  }
  #recruitLists .newGraduate .row .box-title {
    font-size: 154%;
  }
  #recruitLists .newGraduate .row .box-txt {
    font-size: 85%;
    padding: 0 4%;
    margin: 0 0 10px;
  }
  #recruitLists .newGraduate .row .box-btn a {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    font-size: 116%;
  }
  #recruitLists .newGraduate .row .box-btn a::after {
    width: 20px;
    height: 20px;
  }
  #recruitLists .newGraduate ul {
    width: 90%;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 0;
  }
  #recruitLists .newGraduate ul li {
    width: 100%;
    padding: 10px 10px 10px 1em;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  #recruitLists .newGraduate ul li span {
    font-size: 100%;
  }
  #recruitLists .newGraduate ul li a {
    width: 40%;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    padding: 6px 0.8em;
    font-size: 85%;
  }
  #recruitLists .newGraduate ul li a:hover {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  }
  #recruitLists .newGraduate ul li a::after {
    width: 15px;
    height: 15px;
  }
  #recruitLists .newGraduate figure.bnr {
    width: 90%;
    margin: 0 auto;
  }
  #recruitLists .newGraduate figure.bnr a:hover {
    opacity: 0.75;
  }
  #greeting {
    position: relative;
    padding: 0 0 60px;
  }
  #greeting::before {
    top: 100px;
  }
  #greeting::after {
    width: 100%;
  }
  #greeting div.inner h2 {
    line-height: 1.4;
    padding: 40px 0 0;
    margin: 0 0 20px;
  }
  #greeting div.inner h2::before {
    width: 100px;
    height: 50px;
    top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #greeting div.inner p {
    font-size: 85%;
    padding: 0 6%;
    font-weight: bold;
    line-height: 2;
    margin: 0;
  }
  #greeting div.inner ul {
    width: 100%;
    margin: 40px auto 0;
    padding: 40px 5% 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 50px 10%;
  }
  #greeting div.inner ul li {
    width: 45%;
    text-align: center;
    border-right: none;
  }
  #greeting div.inner ul li:nth-of-type(3n+1) {
    border-left: none;
  }
  #greeting div.inner ul li p {
    font-size: 85%;
    line-height: 1.3;
    margin: 0 0 5px;
    min-height: 40px;
  }
  #greeting div.inner ul li figure img {
    height: 180px;
  }
  #greeting div.inner ul li span {
    margin: 25px 0 0;
    font-size: 77%;
    opacity: 0.7;
  }
  #flow {
    position: relative;
    padding: 30px 0 80px;
  }
  #flow h2::before {
    width: 100px;
    height: 50px;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #flow .inner .itemWrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #flow .inner .itemWrap .item {
    width: 48%;
    height: auto;
    margin: 20px auto 0;
    padding: 20px 0 0;
    background-size: 50%;
    background-position: top center;
  }
  #flow .inner .itemWrap .item:nth-of-type(1), #flow .inner .itemWrap .item:nth-of-type(2) {
    margin: 0 auto;
  }
  #flow .inner .itemWrap .item p.number {
    font-size: 154%;
    margin: 0 0 20px;
  }
  #flow .inner .itemWrap .item figure {
    margin: 0 0 60px;
  }
  #flow .inner .itemWrap .item figure img {
    height: 70px;
  }
  #flow .inner .itemWrap .item div p.itemTitle {
    font-size: 100%;
    margin: 0;
  }
  #flow .inner .itemWrap .item div p.itemTxt {
    font-size: 77%;
  }
  #flow .inner .itemWrap .item div p.itemTxt br {
    display: none;
  }
  #interview {
    padding: 30px 0 60px;
  }
  #interview h2 {
    z-index: 1;
    margin: 0 auto 20px;
  }
  #interview h2::before {
    width: 100px;
    height: 50px;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #interview #interviewList article {
    position: relative;
    margin: 100px 0 0;
  }
  #interview #interviewList article:nth-of-type(1) {
    margin: 0;
  }
  #interview #interviewList article:nth-of-type(1)::before {
    width: 100%;
    height: 60vh;
    top: -92px;
    left: 0;
  }
  #interview #interviewList article:nth-of-type(1)::after {
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
    width: 100%;
    height: 330px;
    top: 250px;
  }
  #interview #interviewList article:nth-of-type(2) {
    margin: 100px 0 0;
  }
  #interview #interviewList article:nth-of-type(3) {
    margin: 100px 0 0;
  }
  #interview #interviewList article:nth-of-type(3)::after {
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
    width: 100%;
    height: 600px;
    top: -65px;
    right: 0;
  }
  #interview #interviewList article:nth-of-type(4) {
    margin: 100px 0 0;
  }
  #interview #interviewList article:nth-of-type(5) {
    margin: 100px 0 0;
  }
  #interview #interviewList article:nth-of-type(5)::before {
    content: "";
    display: block;
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
    width: 100%;
    height: 300px;
    background-color: #FFD1AA;
    position: absolute;
    top: -65px;
    left: 0;
  }
  #interview #interviewList article:nth-of-type(5)::after {
    -webkit-transform: skewY(0deg);
            transform: skewY(0deg);
    width: 100%;
    height: 400px;
    top: unset;
    bottom: -60px;
    left: 0;
  }
  #interview #interviewList article .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    z-index: 1;
  }
  #interview #interviewList article .inner .imgWrap {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
  }
  #interview #interviewList article .inner .imgWrap figure.sImg {
    position: static;
    width: 100%;
  }
  #interview #interviewList article .inner .imgWrap figure.sImg img {
    border: 3px solid #E8E5E2;
  }
  #interview #interviewList article .inner .imgWrap figure.hImg {
    position: absolute;
    top: unset;
    bottom: -10px;
    z-index: 1;
  }
  #interview #interviewList article .inner .imgWrap figure.hImg img {
    height: 200px;
    width: auto;
  }
  #interview #interviewList article .inner .imgWrap p.job {
    width: 70px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #interview #interviewList article .inner .txtWrap {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  #interview #interviewList article .inner .txtWrap p.number {
    position: absolute;
    top: 0;
    right: unset;
    left: 0;
  }
  #interview #interviewList article .inner .txtWrap p.number img {
    height: 40px;
    width: auto;
  }
  #interview #interviewList article .inner .txtWrap p.copy {
    width: 70%;
    margin: 0 0 15px 25%;
  }
  #interview #interviewList article .inner .txtWrap p.year {
    display: inline-block;
    font-size: 85%;
    margin: 0 0 0 25%;
  }
  #interview #interviewList article .inner .txtWrap p.name {
    text-align: right;
    display: inline-block;
    font-size: 124%;
    margin: 0 0 5px 1em;
  }
  #interview #interviewList article .inner .txtWrap p.btn {
    text-align: center;
  }
  #interview #interviewList article .inner .txtWrap p.btn a {
    font-size: 116%;
  }
  #interview #interviewList article.imgLeft .inner .imgWrap p.job {
    top: -35px;
    left: 10px;
  }
  #interview #interviewList article.imgRight .inner .imgWrap p.job {
    top: -35px;
    right: 10px;
    left: unset;
  }
  #careerUp {
    padding: 30px 0;
  }
  #careerUp::before {
    width: 90%;
  }
  #careerUp h2::before {
    width: 100px;
    height: 50px;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #careerUp div.inner div.itemWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
  }
  #careerUp div.inner div.itemWrap div.item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin: 20px 0 0;
  }
  #careerUp div.inner div.itemWrap div.item:nth-of-type(1), #careerUp div.inner div.itemWrap div.item:nth-of-type(2) {
    margin: 20px 0 0;
  }
  #careerUp div.inner div.itemWrap div.item:nth-of-type(1) {
    margin: 0;
  }
  #careerUp div.inner div.itemWrap div.item figure {
    width: 35%;
    margin: 0;
  }
  #careerUp div.inner div.itemWrap div.item figure img {
    height: auto;
  }
  #careerUp div.inner div.itemWrap div.item div {
    width: 65%;
    padding: 0 0 0 4%;
  }
  #careerUp div.inner div.itemWrap div.item div p.itemTitle {
    text-align: left;
    font-size: 93%;
    font-weight: bold;
    margin: 0;
  }
  #careerUp div.inner div.itemWrap div.item div p.itemTxt {
    font-size: 85%;
  }
  #welfare {
    position: relative;
    padding: 30px 0;
  }
  #welfare h2::before {
    width: 100px;
    height: 50px;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #welfare div.inner div.itemWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
  }
  #welfare div.inner div.itemWrap .item {
    width: 100%;
    margin: 20px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #welfare div.inner div.itemWrap .item:nth-of-type(1), #welfare div.inner div.itemWrap .item:nth-of-type(2), #welfare div.inner div.itemWrap .item:nth-of-type(3) {
    margin: 20px 0 0 0;
  }
  #welfare div.inner div.itemWrap .item:nth-of-type(1) {
    margin: 0;
  }
  #welfare div.inner div.itemWrap .item figure {
    display: block;
    width: 33%;
    text-align: center;
    margin: 0;
  }
  #welfare div.inner div.itemWrap .item figure img {
    height: auto;
  }
  #welfare div.inner div.itemWrap .item div {
    width: 66%;
    padding: 0 0 0 4%;
  }
  #welfare div.inner div.itemWrap .item div p.itemTxt {
    font-size: 85%;
  }
  #welfare div.inner div.itemWrap .item dl {
    margin: 0 0 10px;
    border: 2px solid #646464;
  }
  #welfare div.inner div.itemWrap .item dl dt {
    font-size: 100%;
    padding: 5px 0;
  }
  #welfare div.inner div.itemWrap .item dl dd {
    padding: 10px;
    font-size: 85%;
    border-top: 2px solid #646464;
  }
  #movie {
    padding: 40px 0;
  }
  #movie::before {
    width: 90%;
  }
  #movie div {
    width: 85%;
    margin: 0 auto;
  }
  #ceo {
    padding: 30px 0 60px;
  }
  #ceo h2::before {
    width: 100px;
    height: 50px;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #ceo .inner {
    width: 100%;
    margin: 0;
    padding: 0 6%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #ceo .inner .msgImg {
    width: 60%;
    margin: 0 auto 20px;
  }
  #ceo .inner .msgTxt {
    width: 100%;
    padding: 0;
    font-size: 93%;
  }
  #qa {
    padding: 30px 0 30px;
  }
  #qa h2::before {
    width: 100px;
    height: 50px;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #qa div.inner dl {
    border: 2px solid #EDEDED;
    margin: 12px 0 0;
  }
  #qa div.inner dl dt, #qa div.inner dl dd {
    padding: 12px;
  }
  #qa div.inner dl dt span, #qa div.inner dl dd span {
    float: left;
    width: 5%;
    padding: 0;
  }
  #qa div.inner dl dt p, #qa div.inner dl dd p {
    width: 88%;
    float: right;
    padding: 0 1.4em 0 0;
  }
  #qa div.inner dl dt {
    font-size: 100%;
  }
  #qa div.inner dl dt::before {
    right: 4%;
    margin: -10px 0 0;
  }
  #qa div.inner dl dd {
    display: none;
  }
  #qa div.inner dl dd span {
    font-size: 100%;
  }
  #qa div.inner dl dd p {
    float: right;
  }
}
@media screen and (max-width: 480px) {
  #flow .inner .itemWrap .item {
    background-size: contain;
  }
  #flow .inner .itemWrap .item figure {
    margin: 0 0 40px;
  }
}
/*
フォントサイズ表 (base: 14px)
62% = 9px
70% = 10px
77% = 11px   154% = 21px
85% = 12px   162% = 22px  239% = 32px
93% = 13px   170% = 23px  247% = 33px
100% = 14px  177% = 24px  254% = 34px
108% = 15px  185% = 25px  262% = 35px
116% = 16px  193% = 26px  270% = 36px
124% = 17px  200% = 27px  277% = 37px
131% = 18px  208% = 28px  285% = 38px
139% = 19px  216% = 29px  293% = 39px
147% = 20px  224% = 30px  300% = 40px
154% = 21px  231% = 31px  308% = 41px


メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/
.lity-iframe-container {
  border-radius: 10px;
}

body.popup {
  background: #F0F0F0;
}

.outline {
  width: 1080px;
  margin: 0 auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px;
}
.outline .olInner h3 {
  background: #7F7F7F;
  color: #FFF;
  padding: 10px 0.6em;
  font-size: 154%;
  font-weight: bold;
  margin: 0 0 15px;
}
.outline .olInner article {
  margin: 40px 0 0;
}
.outline .olInner article:first-of-type {
  margin: 0;
}
.outline .olInner article h4 {
  background: #FFAD76;
  color: #FFF;
  padding: 10px 0.6em;
  font-size: 116%;
}
.outline .olInner article table {
  width: 100%;
}
.outline .olInner article table tr {
  background: #FFEFDB;
  border-bottom: 1px solid #DDD;
}
.outline .olInner article table tr:nth-of-type(1) {
  border-top: 1px solid #DDD;
}
.outline .olInner article table tr:nth-of-type(even) {
  background: #FFF4E6;
}
.outline .olInner article table tr th, .outline .olInner article table tr td {
  padding: 12px;
}
.outline .olInner article table tr th {
  width: 25%;
  font-weight: normal;
}
.outline .olInner article table tr td {
  background: #FFF;
  width: 75%;
}
.outline .olInner article p.btn a {
  width: 90%;
  margin: 0 auto;
  display: block;
  background: #FF8D02;
  color: #FFF;
  font-size: 154%;
  padding: 16px 0;
  font-weight: bold;
}
.outline .olInner article p.btn a::before {
  margin: -12px 0 0;
}
.outline .olInner article p.btn a:hover {
  background: #faa338;
}

.detail {
  width: 1080px;
  margin: 0 auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px;
}
.detail .mv {
  position: relative;
  padding: 9px 0 0;
  margin: 0 0 40px;
}
.detail .mv p {
  position: absolute;
  top: 0;
  left: 30px;
  width: 160px;
}
.detail .detailInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.detail .detailInner #message {
  width: 65%;
}
.detail .detailInner #message p#mainCopy {
  font-size: 200%;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin: 0 0 15px;
}
.detail .detailInner #message p#txt {
  line-height: 2;
  margin: 0 0 40px;
}
.detail .detailInner #message ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 30px;
}
.detail .detailInner #message ul li {
  width: 49%;
}
.detail .detailInner #message p#name {
  font-size: 177%;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.detail .detailInner #message p#name span {
  display: block;
  font-size: 14px;
}
.detail .detailInner #schedule {
  width: 30%;
}
.detail .detailInner #schedule p#scheTitle {
  background: #B4B4B4;
  color: #FFF;
  font-weight: bold;
  padding: 10px 0.6em;
  margin: 0 0 15px;
}
.detail .detailInner #schedule #timeline {
  border-left: 12px solid #DADADA;
  padding: 0 0 0 25px;
}
.detail .detailInner #schedule #timeline dl::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
  font-size: 0;
}
.detail .detailInner #schedule #timeline dl dt, .detail .detailInner #schedule #timeline dl dd {
  padding: 8px 10px;
  font-size: 85%;
}
.detail .detailInner #schedule #timeline dl dt:first-of-type, .detail .detailInner #schedule #timeline dl dd:first-of-type {
  border-top: none;
}
.detail .detailInner #schedule #timeline dl dt {
  border-top: 1px solid #B4B4B4;
  width: 22%;
  float: left;
  clear: both;
  position: relative;
}
.detail .detailInner #schedule #timeline dl dt::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: -43px;
  top: 5px;
}
.detail .detailInner #schedule #timeline dl dt.clock::before {
  background: url("/assets/img/detail/clock.svg") no-repeat;
  background-size: contain;
}
.detail .detailInner #schedule #timeline dl dt.sun::before {
  background: url("/assets/img/detail/sun.svg") no-repeat;
  background-size: contain;
}
.detail .detailInner #schedule #timeline dl dt.lunch::before {
  background: url("/assets/img/detail/lunch.svg") no-repeat;
  background-size: contain;
}
.detail .detailInner #schedule #timeline dl dt.note::before {
  background: url("/assets/img/detail/note.svg") no-repeat;
  background-size: contain;
}
.detail .detailInner #schedule #timeline dl dt.dinner::before {
  background: url("/assets/img/detail/dinner.svg") no-repeat;
  background-size: contain;
}
.detail .detailInner #schedule #timeline dl dt.moon::before {
  background: url("/assets/img/detail/moon.svg") no-repeat;
  background-size: contain;
}
.detail .detailInner #schedule #timeline dl dt.bed::before {
  background: url("/assets/img/detail/bed.svg") no-repeat;
  background-size: contain;
}
.detail .detailInner #schedule #timeline dl dd {
  border-top: 1px solid #B4B4B4;
  width: 78%;
  float: left;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 820px) {
  .lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
    width: 92%;
  }
  .lity-iframe-container {
    height: 77vh;
  }
  .outline {
    width: 100%;
    margin: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 15px;
  }
  .outline .olInner h3 {
    padding: 8px 0.6em;
    font-size: 116%;
    margin: 0 0 10px;
  }
  .outline .olInner article {
    margin: 20px 0 0;
  }
  .outline .olInner article:first-of-type {
    margin: 0;
  }
  .outline .olInner article h4 {
    padding: 8px 0.6em;
    font-size: 100%;
  }
  .outline .olInner article table {
    font-size: 85%;
  }
  .outline .olInner article table tr th, .outline .olInner article table tr td {
    padding: 8px;
  }
  .outline .olInner article p.btn a {
    width: 100%;
    margin: 0;
    font-size: 100%;
    padding: 13px 0;
  }
  .outline .olInner article p.btn a::before {
    margin: -10px 0 0;
  }
  .detail {
    width: 100%;
    margin: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 15px 6% 30px;
  }
  .detail .mv {
    padding: 5px 0 0;
    margin: 0 0 20px;
  }
  .detail .mv p {
    position: absolute;
    top: 0;
    left: 10px;
    width: 100px;
  }
  .detail .detailInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .detail .detailInner #message {
    width: 100%;
    margin: 0 0 30px;
  }
  .detail .detailInner #message p#mainCopy {
    font-size: 131%;
    margin: 0 0 8px;
  }
  .detail .detailInner #message p#txt {
    line-height: 1.8;
    font-size: 93%;
    margin: 0 0 20px;
  }
  .detail .detailInner #message ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 10px;
  }
  .detail .detailInner #message ul li {
    width: 100%;
    margin: 1px 0 0;
  }
  .detail .detailInner #message ul li:first-child {
    margin: 0;
  }
  .detail .detailInner #message p#name {
    font-size: 139%;
    text-align: center;
  }
  .detail .detailInner #message p#name span {
    display: inline-block;
    font-size: 14px;
  }
  .detail .detailInner #schedule {
    width: 100%;
  }
  .detail .detailInner #schedule p#scheTitle {
    margin: 0 0 10px;
  }
}
/*
フォントサイズ表 (base: 14px)
62% = 9px
70% = 10px
77% = 11px   154% = 21px
85% = 12px   162% = 22px  239% = 32px
93% = 13px   170% = 23px  247% = 33px
100% = 14px  177% = 24px  254% = 34px
108% = 15px  185% = 25px  262% = 35px
116% = 16px  193% = 26px  270% = 36px
124% = 17px  200% = 27px  277% = 37px
131% = 18px  208% = 28px  285% = 38px
139% = 19px  216% = 29px  293% = 39px
147% = 20px  224% = 30px  300% = 40px
154% = 21px  231% = 31px  308% = 41px


メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.maskWrap {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.maskWrap .mask {
  width: inherit;
  height: inherit;
  background-color: #fff;
  opacity: 0;
}
.maskWrap .mask.isPlay {
  -webkit-animation: play 0.4s cubic-bezier(0.8, 0, 0.5, 1) forwards;
          animation: play 0.4s cubic-bezier(0.8, 0, 0.5, 1) forwards;
  position: relative;
  opacity: 1 !important;
}
.maskWrap .mask.isPlay::before {
  -webkit-animation: maskOut 0.4s cubic-bezier(0.8, 0, 0.5, 1) 0.4s forwards;
          animation: maskOut 0.4s cubic-bezier(0.8, 0, 0.5, 1) 0.4s forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #FF8D02;
}
@-webkit-keyframes play {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes play {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes maskOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes maskOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#pageScroll {
  z-index: 99;
}
#pageScroll a {
  background: #f2f1eb;
  color: #333;
}
#pageScroll a i {
  color: #333;
}
#pageScroll.fixed {
  bottom: 87px;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt11 {
  margin-top: 11px !important;
}

.mt12 {
  margin-top: 12px !important;
}

.mt13 {
  margin-top: 13px !important;
}

.mt14 {
  margin-top: 14px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 820px) {
  .scrollTable {
    width: 90%;
    overflow: auto;
    white-space: nowrap;
    margin: 0 auto;
  }
  .scrollTable::-webkit-scrollbar {
    height: 5px;
  }
  .scrollTable::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scrollTable::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  #pageScroll.fixed {
    right: 2.5%;
    bottom: 10px;
  }
}