@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");
/*==　ページスクロール　==*/
#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: 768px) {
  /*==　ハンバーガーメニュー　==*/
  .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: #222;
    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.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 {
    right: 15px;
    -webkit-transition: none;
    transition: none;
    z-index: 1;
  }
  #pageScroll a:hover svg {
    -webkit-transform: none;
            transform: none;
  }
  .fixed#pageScroll {
    bottom: 20px;
  }
}
.boxBtnA {
  display: block;
  background: #86B028;
  text-align: center;
  color: #FFF;
  padding: 14px 0;
  font-size: 108%;
  position: relative;
  border-radius: 33px;
}
.boxBtnA::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  position: absolute;
  font-size: 70%;
  top: 50%;
  right: 20px;
  margin: -11px 0 0;
}
.boxBtnA:hover {
  color: #FFF;
  background: #61860f;
}

.arrowBtn a {
  position: relative;
  padding: 0 24px 10px 0;
  font-size: 85%;
}
.arrowBtn a span.arrow {
  text-align: center;
  width: 15px;
  height: 15px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -15px 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: 768px) {
  .boxBtnA {
    font-size: 100%;
  }
}
a.post-edit-link {
  display: block;
  padding: 15px 0;
  text-align: center;
  background: #222;
  color: #FFF;
  margin: 60px 0 0;
}
a.post-edit-link:hover {
  background: #333;
  color: #FFF;
}

.wp-pagenavi {
  text-align: center;
  font-size: 100%;
  margin: 40px auto 0;
}
.wp-pagenavi span.current {
  background: #86B028;
  color: #FFF;
  padding: 10px 13px;
  border-radius: 20px;
  margin: 0 5px;
}
.wp-pagenavi a.page {
  font-size: 100%;
  background: #F0F0F0;
  color: #000;
  padding: 10px 13px;
  border-radius: 20px;
  margin: 0 5px;
}
.wp-pagenavi a.page:hover {
  background: #61860f;
  color: #FFF;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  font-size: 85%;
  color: #86B028;
  margin: 0 5px;
  padding: 8px;
  position: relative;
  border: none;
  opacity: 0.5;
}
.wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.nextpostslink:hover {
  opacity: 1;
}

.entryBtnWrap {
  position: relative;
  height: 50px;
  width: 100%;
  margin: 60px auto 0;
  padding: 0;
}
.entryBtnWrap p {
  position: absolute;
  top: 0;
}
.entryBtnWrap p a {
  color: #333;
  font-size: 100%;
  background: none;
  display: block;
  text-align: center;
  padding: 12px 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: #86B028;
}
.entryBtnWrap p.prevBtn a::after, .entryBtnWrap p.nextBtn a::after {
  top: 50%;
  font-size: 70%;
  margin: -9px 0 0;
}
.entryBtnWrap p.prevBtn {
  left: 0;
}
.entryBtnWrap p.prevBtn a {
  padding: 12px 0 12px 12px;
}
.entryBtnWrap p.prevBtn a::after {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}
.entryBtnWrap p.nextBtn {
  right: 0;
}
.entryBtnWrap p.nextBtn a {
  padding: 12px 12px 12px 0;
}
.entryBtnWrap p.nextBtn a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
}
.entryBtnWrap p.backIndexBtn {
  left: 50%;
  width: 30%;
  margin: 0 0 0 -15%;
}
.entryBtnWrap p.backIndexBtn a {
  text-align: center;
  color: #86B028;
}
.entryBtnWrap p.backIndexBtn a:hover {
  color: #61860f;
  text-decoration: underline;
}

.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: 116%;
  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: center;
  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: #a42d2d;
  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: 768px) {
  .wp-pagenavi {
    margin: 20px auto 0;
  }
  .entryBtnWrap {
    height: 50px;
    margin: 20px 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 p {
    font-size: 108%;
    line-height: 1.5;
  }
  .editer h4 {
    font-size: 177%;
  }
  .editer h5 {
    font-size: 154%;
  }
  .editer h6 {
    font-size: 131%;
  }
  .editer ul li, .editer ol li {
    font-size: 108%;
  }
  .editer img {
    border-radius: 15px;
    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 {
  margin: 0;
  padding: 0;
  color: #222;
  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: normal;
  font-style: normal;
  font-size: 18px;
  *font-size: 100%;
  line-height: 2;
  word-spacing: 0;
  letter-spacing: 0.08em;
  background: #FDFDFD;
}

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

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

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

/* ======================================= */
/* 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: #86B028;
  text-decoration: none;
}
a:hover {
  color: #61860f;
  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 {
  height: 140px;
}
header#siteHead .inner {
  width: 88%;
  margin: 0 auto;
  position: relative;
}
header#siteHead .inner h1 {
  position: absolute;
  top: -20px;
  left: 25px;
  width: 120px;
}
header#siteHead .inner h1 a {
  display: block;
}
header#siteHead .inner h1 a:hover {
  opacity: 0.75;
}
header#siteHead .inner nav#gNav {
  position: absolute;
  top: 50px;
  right: 0;
}
header#siteHead .inner nav#gNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header#siteHead .inner nav#gNav ul li {
  margin: 0 0 0 2.4em;
}
header#siteHead .inner nav#gNav ul li:first-child {
  margin: 0;
}
header#siteHead .inner nav#gNav ul li a {
  /* -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;*/
  font-size: 100%;
  color: #222;
  position: relative;
}

header#siteHead .inner nav#gNav ul li a {
  display: block;
  padding: 0 0 5px;
  position: relative;
  text-decoration: none;
}

header#siteHead .inner nav#gNav ul li a::before,
a::after {
  border-bottom: solid 2px #7a9f4b;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}

header#siteHead .inner nav#gNav ul li a::before {
  left: 50%;
}

header#siteHead .inner nav#gNav ul li a::after {
  right: 50%;
}

header#siteHead .inner nav#gNav ul li a:hover::before,
header#siteHead .inner nav#gNav ul li a:hover::after {
  width: 50%;
}

header#siteHead .inner nav#gNav ul li a span {
  font-size: 77%;
  color: #999;
  display: block;
  line-height: 1;
}
header#siteHead .inner nav#gNav ul li a:hover {
  color: #999;
}

.menuBtn {
  display: none;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 768px) {
  header#siteHead {
    height: 90px;
  }
  header#siteHead .inner {
    width: 92%;
    margin: 0 auto;
    position: relative;
  }
  header#siteHead .inner h1 {
    top: 20px;
    left: 2%;
    width: 50px;
  }
  header#siteHead .inner nav#gNav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    background: #FFF;
    z-index: 9998;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  header#siteHead .inner nav#gNav.active {
    right: 0;
  }
  header#siteHead .inner nav#gNav ul {
    position: absolute;
    top: 50%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  header#siteHead .inner nav#gNav ul li {
    width: 100%;
    margin: 25px 0 0;
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  header#siteHead .inner nav#gNav ul li:first-child {
    margin: 0;
  }
  header#siteHead .inner nav#gNav ul li.inview {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header#siteHead .inner nav#gNav ul li a {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 108%;
    color: #222;
    position: relative;
  }
  header#siteHead .inner nav#gNav ul li a span {
    font-size: 77%;
    color: #999;
    display: block;
    line-height: 1;
  }
  header#siteHead .inner nav#gNav ul li a:hover {
    color: #999;
  }
  .menuBtn {
    position: fixed;
    top: 20px;
    right: 3%;
    display: block;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*
フォントサイズ表 (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 ----------------------- */
.footer_new ul {
  position: fixed;
  bottom: 100px;
  left: 0%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer_new ul li {
  margin: 0 0 0 2em;
  font-size: 10px;
  line-height: 5;
}
footer ul li:first-child {
  margin: 0;
}
.footer_new ul li a {
  line-height: 1;
  font-size: 20px;
  color: #222;
}
.footerNav{
	display: flex;
	max-width: 1000px;
	justify-content: space-between;
	align-items: center;
	margin: 30px auto 58px;
}
.footerNav li{
	position: relative;
	box-sizing: border-box;
	flex-grow: 1;
	text-align: center;
	max-width: 250px;
}
.footerNav li::before{
	display: block;
	content: "";
	width: 1px;
	height: 100%;
	background: #D6D6D6;
	position: absolute;
	left: 0;
	top: 0;
}
.footerNav li:last-child::after{
	display: block;
	content: "";
	width: 1px;
	height: 100%;
	background: #D6D6D6;
	position: absolute;
	right: 0;
	top: 0;
}
.footerNav li a{
	display: block;
	width: 95%;
	margin: 0 auto;
}
.footerNav li a:hover{
	opacity:0.6;
	transition: all 0.3s;
}
.footerNav li img{
	width: 200px;
}

@media only screen and (max-width: 1200px) {
.footer_new ul {
    position: static;
    bottom: unset;
    left: unset;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_new ul li {
    margin: 0 0 0 2em;
    line-height: 5;
  }
  .footer_new ul li:first-child {
    margin: 0;
  }
  .footer_new ul li a {
    font-size: 24px;
  }
	.footerNav{
		flex-wrap:wrap;
	}
	.footerNav li{
		width: 50%;
		margin-bottom: 20px;
		padding-bottom: 10px;
		max-width: inherit;
	}
	.footerNav li::before{
		content: none;
	}
	.footerNav li:last-child::after{
		content: none;
	}	
	.footerNav li:nth-child(1)::after,
	.footerNav li:nth-child(2)::after{
		display: block;
		content: "";
		width: 80%;
		height: 1px;
		background: #D6D6D6;
		position: absolute;
		left: 10%;
		bottom: 0;
	}
	.footerNav li:nth-child(even)::before{
		display: block;
		content: "";
		width: 1px;
		height: 80%;
		background: #D6D6D6;
		position: absolute;
		left: 0;
		bottom: 0;
	}	
}
@media only screen and (max-width: 480px) {
	.footerNav{
		display: block;
		padding-right: 20px;
		padding-left: 20px;
		box-sizing: border-box;
	}
	.footerNav li{
		width: 100%;
		box-sizing: border-box;
	}
	.footerNav li::after,
	.footerNav li:nth-child(1)::after,
	.footerNav li:nth-child(2)::after {
		display: block;
		content: "";
		width: 100%;
		height: 1px;
		background: #D6D6D6;
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.footerNav li:nth-child(even)::before{
		content: none;
	}
	.footerNav li a {
    display: block;
    width: 100%;
    margin: 0 auto;
	}
}
footer{
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 16px;
	margin-top: 80px;
}
footer::after{
	vertical-align: bottom;
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
	width: 84px;
	height: 103px;
	right: 0;
	background:  url("../img/common/goal.png") no-repeat 0 0;
	background-size: cover;
}
footer .logo{
	vertical-align: top;
	margin: 0 auto;
	width: 150px;
}
footer .logo img{
	width: 100%;
}
footer .txt{
	width: auto;
	font-size: 13px;
}
footer .txt em{
	font-size: 20px;
	font-weight: bold;
	display: block;
}
footer .txt img{
	display: block;
	margin: 21px auto 0;
	width: 210px;
}
footer .txt span{
	display: block;
	font-size: 95%;
	margin-top: 3px;
}
.copyright{
	text-align: center;
	background: #7a9f4b;
	line-height: 1;
	padding: 33px 0 32px;
}
.copyright span{
	color: #fff;
	font-size: 10px;
}

@media only screen and (max-width: 1200px) {
	footer{
		width: 100%;
		padding-right: 20px;
		padding-left: 20px;
		box-sizing: border-box;
	}
	footer::after{
		right: 30px;
	}
}
@media only screen and (max-width: 480px) {
	footer{
		padding-bottom: 126px;
	}
	footer .logo {
		margin-bottom: 15px;
		width: 120px;
	}	
}
@media only screen and (max-width: 360px) {
	footer{
		padding-bottom: 156px;
	}
}

/* ------------------- pagetop ----------------------- */
#pagetop {
	position: fixed;
	bottom: 153px;
	left: calc(50% + 567px);
	z-index:20;
}
#pagetop a {
	display: block;
	text-decoration: none;
	width:58px;
	height:65px;
	text-align: center;
}
#pagetop a:hover {
	transition: all 0.3s;
}
#pagetop img{
	width:58px;
	height:65px;
}
@media only screen and (max-width: 1200px) {
	#pagetop {
		left:inherit;
		right: 11px;
	}
}
/*
フォントサイズ表 (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 {
  margin: 0;
}
main section {
  margin: 100px 0 0;
  width: 100%;
  height: auto;
  position: relative;
}
main section:first-of-type {
  margin: 0;
}
main section h2 {
  display: inline-block;
  font-weight: normal;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  background: #FDFDFD;
  padding: 10px 3px 10px 16px;
  font-size: 154%;
  letter-spacing: 0.2em;
  position: absolute;
  top: 0;
  z-index: 999;
}
main section h2 span {
  font-size: 12px;
  color: #999;
  display: block;
  line-height: 1;
}
main section h2.left {
  left: 6%;
}
main section h2.right {
  right: 6%;
}
main section p.readCopy {
  font-size: 210%;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}
main section p.caption {
  font-size: 85%;
  color: #666;
}
main section a {
  text-decoration: underline;
}

#mv {
  padding: 0 0 0 8%;
}
#about .flexBox .imgWrap {
  width: 50%;
  padding: 0 40px 0 40px;
}
#about .flexBox .txtWrap {
  width: 50%;
  padding: 0 6% 0 6%;
}
#about .flexBox .txtWrap p#outline {
  margin: 20px 0 0;
}
#about .flexBox .txtWrap p#outline span {
  color: #86B028;
}
#about .flexBox .txtWrap p.caption {
  margin: 20px 0 0;
}

#home .flexBox .imgWrap {
  width: 40%;
}
#home .flexBox .txtWrap {
  width: 60%;
  padding: 0 15% 0 6%;
}
#home .flexBox .txtWrap p#outline {
  margin: 20px 0 0;
}
#home .flexBox .txtWrap p#outline span {
  color: #86B028;
}
#home .flexBox .txtWrap p.caption {
  margin: 20px 0 0;
}

#message .flexBox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0 0 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#message .flexBox .contWrap {
  width: 40%;
}
#message .flexBox .contWrap .maskWrap {
  width: 100%;
  margin: 0;
}
#message .flexBox .txtWrap {
  width: 60%;
  padding: 0 6% 0 15%;
  margin: 0 0 30px;
}
#message .flexBox .txtWrap span {
  display: block;
  font-size: 85%;
  margin: 15px 0 0;
  color: #86B028;
}
#message .flexBox .txtWrap p {
  margin: 30px 0 0;
}
#message .flexBox .txtWrap p:first-of-type {
  margin: 0;
}


#company .flexBox {
  padding: 0 15% 0 10%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#access p.readCopy {
  padding: 0 0 0 6%;
  text-align: center;
}
#company .flexBox .txtWrap {
  width: 80%;
}
#company .flexBox .txtWrap dl {
  margin: 40px 0 0;
}
#company .flexBox .txtWrap dl::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
  font-size: 0;
}
#company .flexBox .txtWrap dl dt, #company .flexBox .txtWrap dl dd {
  border-bottom: 1px solid #DDD;
  padding: 10px;
  float: left;
}
#company .flexBox .txtWrap dl dt {
  clear: both;
  width: 15%;
}
#company .flexBox .txtWrap dl dd {
  margin: 0 0 0 2em;
  width: 70%;
}
#company .flexBox .profWrap {
  width: 40%;
}
#company .flexBox .profWrap .flexBox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 30px 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#company .flexBox .profWrap .flexBox:first-of-type {
  margin: 0;
}
#company .flexBox .profWrap .flexBox .profImg {
  width: 30%;
}
#company .flexBox .profWrap .flexBox p {
  width: 30%;
  padding: 0 0 0 4%;
}

#toChef .mv,#company .mv,#about .mv,#access .mv{
  width: 100%;
  height: 30vh;
  margin: 0 0 60px;
}
#toChef .mv img,#company .mv img,#about .mv img,#access .mv img {
  width: 100%;
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#toChef .txtWrap {
  padding: 0 25%;
}
#toChef .txtWrap p.readCopy {
  text-align: center;
}
#toChef .formWrap {
  padding: 0 25%;
  margin: 40px 0 0;
}
#toChef .formWrap table {
  width: 100%;
  margin: 0 0 40px;
}
#toChef .formWrap table tr th, #toChef .formWrap table tr td {
  padding: 12px;
}
#toChef .formWrap table tr th {
  width: 35%;
  text-align: left;
  font-weight: normal;
}
#toChef .formWrap table tr td {
  width: 65%;
}
#toChef .formWrap table tr td input[type=text],
#toChef .formWrap table tr td input[type=tel],
#toChef .formWrap table tr td input[type=email] {
  padding: 8px;
  font-size: 116%;
  color: #333;
  border: 1px solid #CCC;
}
#toChef .formWrap table tr td input[type=text]:-moz-placeholder-shown, #toChef .formWrap table tr td input[type=tel]:-moz-placeholder-shown, #toChef .formWrap table tr td input[type=email]:-moz-placeholder-shown {
  color: #CCC;
}
#toChef .formWrap table tr td input[type=text]:-ms-input-placeholder, #toChef .formWrap table tr td input[type=tel]:-ms-input-placeholder, #toChef .formWrap table tr td input[type=email]:-ms-input-placeholder {
  color: #CCC;
}
#toChef .formWrap table tr td input[type=text]:placeholder-shown,
#toChef .formWrap table tr td input[type=tel]:placeholder-shown,
#toChef .formWrap table tr td input[type=email]:placeholder-shown {
  color: #CCC;
}
#toChef .formWrap table tr td input[type=text]::-webkit-input-placeholder,
#toChef .formWrap table tr td input[type=tel]::-webkit-input-placeholder,
#toChef .formWrap table tr td input[type=email]::-webkit-input-placeholder {
  color: #CCC;
}
#toChef .formWrap table tr td input[type=text]:-moz-placeholder,
#toChef .formWrap table tr td input[type=tel]:-moz-placeholder,
#toChef .formWrap table tr td input[type=email]:-moz-placeholder {
  color: #CCC;
  opacity: 1;
}
#toChef .formWrap table tr td input[type=text]::-moz-placeholder,
#toChef .formWrap table tr td input[type=tel]::-moz-placeholder,
#toChef .formWrap table tr td input[type=email]::-moz-placeholder {
  color: #CCC;
  opacity: 1;
}
#toChef .formWrap table tr td input[type=text]:-ms-input-placeholder,
#toChef .formWrap table tr td input[type=tel]:-ms-input-placeholder,
#toChef .formWrap table tr td input[type=email]:-ms-input-placeholder {
  color: #CCC;
}
#toChef .formWrap table tr td input[type=text]:focus,
#toChef .formWrap table tr td input[type=tel]:focus,
#toChef .formWrap table tr td input[type=email]:focus {
  outline: 0;
  border: 1px solid #86B028;
}
#toChef .formWrap table tr td input.sizeXxs {
  width: 15%;
}
#toChef .formWrap table tr td input.sizeXs {
  width: 25%;
}
#toChef .formWrap table tr td input.sizeS {
  width: 50%;
}
#toChef .formWrap table tr td input.sizeM {
  width: 65%;
}
#toChef .formWrap table tr td input.sizeL {
  width: 80%;
}
#toChef .formWrap table tr td input.sizeXl {
  width: 100%;
}
#toChef .formWrap textarea {
  padding: 8px;
  font-size: 116%;
  color: #333;
  border: 1px solid #CCC;
  width: 100%;
  height: 180px;
}
#toChef .formWrap input[type=submit] {
  display: block;
  padding: 20px 0;
  text-align: center;
  width: 50%;
  border: none;
  margin: 0 auto;
  font-size: 116%;
  background: #e4b333;
  color: #FFF;
}
#toChef .formWrap input[type=submit]:hover {
  background: #f5c854;
}

#access p.readCopy {
  padding: 0 0 0 6%;
}
#access #gMap {
  width: 85%;
  height: 70vh;
  margin: 0 120px 40px;
}
#access #gMap iframe {
  width: 100%;
  height: 70vh;
  vertical-align: bottom;
}
#access p.accessTxt {
  padding: 0 15%;
  margin: 0 0 20px;
}
#access p.telBtn {
  margin: 0 0 60px;
  padding: 0 15%;
}
#access p.telBtn a {
  font-size: 177%;
}
#access p.telBtn a i {
  font-size: 85%;
  margin: 0 8px 0 0;
}
#access .flexBox {
  padding: 0 15% 0 1%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#access .flexBox .illust {
  width: 45%;
}
#access .flexBox .method {
  width: 50%;
}
#access .flexBox .method img {
  margin: 80px 0 0;
}
#access .flexBox .method img:first-of-type {
  margin: 0;
}

#photo .flexBox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 0 0 0 15%;
}
#photo .flexBox .txtWrap {
  width: 70%;
  padding: 0 6% 0 0;
}
#photo .flexBox .txtWrap p.bnr {
  margin: 40px 0 0;
  width: 60%;
}
#photo .flexBox .txtWrap p.bnr a {
  display: block;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#photo .flexBox .txtWrap p.bnr a:hover {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
#photo .flexBox .imgWrap {
  width: 30%;
  position: relative;
}
#photo .flexBox .imgWrap::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  position: absolute;
  top: -80px;
  left: -20%;
  background: url("../img/photo/logo.svg") no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  z-index: 2;
}

#ig p#igTitle {
  margin: 0 0 20px;
  font-size: 139%;
  text-align: center;
}
#ig p#igTitle i {
  margin: 0 10px 0 0;
}
#ig iframe {
  width: 100%;
}

main#conf {
  padding: 60px 20%;
}
main#conf h1 {
  width: 80px;
  margin: 0 0 40px;
}
main#conf p {
  margin: 0 0 20px;
}
main#conf p.errorTitle {
  color: #c91e1e;
}
main#conf table {
  width: 100%;
  margin: 0 0 40px;
}
main#conf table tr {
  border-bottom: 1px solid #DDD;
}
main#conf table tr:first-of-type {
  border-top: 1px solid #DDD;
}
main#conf table tr th, main#conf table tr td {
  padding: 20px 12px;
}
main#conf table tr th {
  font-size: 85%;
  color: #666;
  width: 35%;
  text-align: left;
  font-weight: normal;
}
main#conf table tr td {
  width: 65%;
}
main#conf input.errorBack {
  display: block;
  padding: 18px 0;
  text-align: center;
  width: 100%;
  border: none;
  margin: 0 auto;
  font-size: 108%;
  color: #FFF;
  background: #999;
}
main#conf input.errorBack:hover {
  background: #666;
}
main#conf .flexBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main#conf .flexBox input {
  display: block;
  padding: 18px 0;
  text-align: center;
  width: 48%;
  border: none;
  margin: 0;
  font-size: 108%;
  color: #FFF;
}
main#conf .flexBox input[type=button] {
  background: #999;
}
main#conf .flexBox input[type=button]:hover {
  background: #666;
}
main#conf .flexBox input[type=submit] {
  background: #e4b333;
}
main#conf .flexBox input[type=submit]:hover {
  background: #f5c854;
}

main#thanks {
  padding: 60px 20%;
}
main#thanks h1 {
  width: 80px;
  margin: 0 0 40px;
}
main#thanks p.thanksTxt {
  margin: 0 0 20px;
}
main#thanks p.thanksTxt2 {
  margin: 0 0 40px;
}
main#thanks p#btn a i {
  margin: 0 10px 0 0;
}
main#thanks p#btn a:hover {
  text-decoration: underline;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 768px) {
  main section {
    margin: 60px 0 0;
    padding: 50px 0 0;
    width: 100%;
    height: auto;
    position: relative;
  }
  main section:first-of-type {
    margin: 0;
  }
  main section h2 {
    padding: 12px 5px 12px 12px;
    font-size: 100%;
    letter-spacing: 0.14em;
    top: 0;
  }
  main section h2 span {
    font-size: 10px;
    line-height: 0.6;
  }
  main section h2.left {
    left: 0%;
  }
  main section h2.right {
    right: 3%;
  }
  main section p.readCopy {
    font-size: 177%;
    letter-spacing: 0.06em;
    line-height: 1.4;
    margin: 0 0 20px;
  }
  main section p.caption {
    font-size: 77%;
  }
  main section a {
    text-decoration: underline;
  }
  #mv {
    padding: 0 0 0 5%;
  }
  #mv #mvSlider div {
    width: 100%;
    height: 50vh;
  }
  #mv #mvSlider div img {
    width: 100%;
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #about .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #about .flexBox .imgWrap {
    width: 95%;
    margin: 0 0 30px;
  }
  #about .flexBox .txtWrap {
    width: 100%;
    padding: 0 8%;
  }
  #about .flexBox .txtWrap p.readCopy br {
    display: none;
  }
  #about .flexBox .txtWrap p#outline span {
    color: #86B028;
    font-size: 93%;
  }
  
  #home .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #home .flexBox .imgWrap {
    width: 95%;
    margin: 0 0 30px;
  }
  #home .flexBox .txtWrap {
    width: 100%;
    padding: 0 8%;
  }
  #home .flexBox .txtWrap p.readCopy br {
    display: none;
  }
  #home .flexBox .txtWrap p#outline span {
    color: #86B028;
    font-size: 93%;
  }  
  #message::before {
    width: 100%;
    top: -25vh;
  }
  #message .flexBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    margin: 0 0 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #message .flexBox .contWrap {
    width: 100%;
    margin: 0 0 40px;
  }
  #message .flexBox .contWrap .maskWrap {
    width: 100%;
    margin: 0;
  }
  #message .flexBox .txtWrap {
    width: 100%;
    padding: 0 8%;
    margin: 0 0 30px;
  }
  #message .flexBox .txtWrap span {
    display: block;
    font-size: 85%;
    margin: 15px 0 0;
  }
  #company::before {
    right: unset;
    left: 0;
    width: 65%;
    height: 100vh;
    top: 70vh;
  }
  #company .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
  #company .flexBox .txtWrap {
    width: 100%;
    padding: 0 8%;
    margin: 0 0 40px;
  }
  #company .flexBox .txtWrap dl {
    font-size: 85%;
    margin: 20px 0 0;
  }
  #company .flexBox .txtWrap dl::after {
    display: none;
  }
  #company .flexBox .txtWrap dl dt, #company .flexBox .txtWrap dl dd {
    border-bottom: none;
    padding: 0;
    float: none;
  }
  #company .flexBox .txtWrap dl dt {
    clear: both;
    padding: 10px 0 0;
  }
  #company .flexBox .txtWrap dl dd {
    border-bottom: 1px solid #DDD;
    margin: 0;
    padding: 0 0 10px;
  }
  #company .flexBox .profWrap {
    width: 100%;
    padding: 0 5%;
  }
  #company .flexBox .profWrap .flexBox {
    margin: 20px 0 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #company .flexBox .profWrap .flexBox:first-of-type {
    margin: 0;
  }
  #company .flexBox .profWrap .flexBox .profImg {
    width: 30%;
  }
  #company .flexBox .profWrap .flexBox p {
    font-size: 85%;
    width: 70%;
    padding: 0 0 0 4%;
  }
  #toChef .mv,#company .mv,#about .mv,#access .mv {
    height: 40vh;
    margin: 0 0 30px;
  }
  #toChef .mv img,#company .mv img,#about .mv img,#access .mv img {
    height: 40vh;
  }
  #toChef .txtWrap {
    padding: 0 8%;
  }
  #toChef .txtWrap p.readCopy {
    text-align: left;
  }
  #toChef .txtWrap p.readCopy br {
    display: none;
  }
  #toChef .formWrap {
    padding: 0 8%;
    margin: 30px 0 0;
  }
  #toChef .formWrap table {
    width: 100%;
    margin: 0 0 30px;
  }
  #toChef .formWrap table tr th, #toChef .formWrap table tr td {
    display: block;
    padding: 0;
  }
  #toChef .formWrap table tr th {
    width: 100%;
    padding: 6px 0 3px;
  }
  #toChef .formWrap table tr td {
    width: 100%;
    padding: 3px 0 6px;
  }
  #toChef .formWrap table tr td input[type=text],
  #toChef .formWrap table tr td input[type=tel],
  #toChef .formWrap table tr td input[type=email] {
    font-size: 116%;
  }
  #toChef .formWrap table tr td input.sizeXxs {
    width: 100%;
  }
  #toChef .formWrap table tr td input.sizeXs {
    width: 100%;
  }
  #toChef .formWrap table tr td input.sizeS {
    width: 100%;
  }
  #toChef .formWrap table tr td input.sizeM {
    width: 100%;
  }
  #toChef .formWrap table tr td input.sizeL {
    width: 100%;
  }
  #toChef .formWrap table tr td input.sizeXl {
    width: 100%;
  }
  #toChef .formWrap input[type=submit] {
    padding: 16px 0;
    width: 100%;
    font-size: 108%;
  }
  #access p.readCopy {
    padding: 0 20% 0 5%;
  }
  #access #gMap {
    width: 95%;
    height: 50vh;
  }
  #access #gMap iframe {
    width: 100%;
    height: 50vh;
    margin: 0;
  }
  #access p.accessTxt {
    padding: 0 8%;
    margin: 30px 0 20px;
  }
  #access p.telBtn {
    text-align: center;
    margin: 0 0 30px;
    padding: 0;
  }
  #access p.telBtn a {
    font-size: 177%;
  }
  #access p.telBtn a i {
    font-size: 85%;
    margin: 0 8px 0 0;
  }
  #access .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 8%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #access .flexBox .illust {
    width: 100%;
    margin: 0 0 30px;
  }
  #access .flexBox .method {
    width: 100%;
  }
  #access .flexBox .method img {
    margin: 20px 0 0;
  }
  #photo .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
  #photo .flexBox .txtWrap {
    width: 100%;
    padding: 0 8%;
  }
  #photo .flexBox .txtWrap p.readCopy br {
    display: none;
  }
  #photo .flexBox .txtWrap p.bnr {
    margin: 30px 0 0;
    width: 100%;
  }
  #photo .flexBox .txtWrap p.bnr a {
    display: block;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  #photo .flexBox .txtWrap p.bnr a:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }
  #photo .flexBox .imgWrap {
    width: 100%;
    padding: 0 0 0 5%;
    margin: 0 0 30px;
  }
  #photo .flexBox .imgWrap::before {
    width: 80px;
    height: 80px;
    top: unset;
    bottom: -20px;
    left: 8%;
  }
  #ig {
    margin: 20px 0 0;
  }
  #ig p#igTitle {
    margin: 0 0 10px;
    font-size: 116%;
  }
  main#conf {
    padding: 30px 8% 60px;
  }
  main#conf h1 {
    width: 60px;
    margin: 0 0 30px;
  }
  main#conf table {
    margin: 0 0 30px;
  }
  main#conf table tr th, main#conf table tr td {
    display: block;
    padding: 0;
  }
  main#conf table tr th {
    width: 100%;
    padding: 12px 10px 0px;
  }
  main#conf table tr td {
    width: 100%;
    padding: 0px 10px 12px;
  }
  main#conf .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  main#conf .flexBox input {
    width: 100%;
    padding: 14px 0;
    margin: 0;
    font-size: 100%;
  }
  main#conf .flexBox input[type=button] {
    margin: 0 0 10px;
  }
  main#thanks {
    padding: 30px 8% 60px;
  }
  main#thanks h1 {
    width: 60px;
    margin: 0 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
*/
.maskWrap {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.maskWrap .mask {
  width: inherit;
  height: inherit;
  background-color: #fff;
  opacity: 0;
}
.maskWrap .mask.isPlay {
  -webkit-animation-name: play;
          animation-name: play;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
  
}
.maskWrap .mask.isPlay::before {
  -webkit-animation-name: maskOut;
          animation-name: maskOut;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #86B028;
  pointer-events: none;
}
@-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: 9997;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#pageScroll a {
  background: #FFF;
  color: #333;
}
#pageScroll a i {
  color: #333;
}
#pageScroll.fixed {
  bottom: 2%;
}

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

.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: 768px) {
  #pageScroll {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #pageScroll a {
    background: none;
  }
  #pageScroll.fixed {
    right: 2.5%;
    bottom: 15px;
  }
}

.th_copy{text-align: center; margin:0 auto;}
.tl_copy{text-align: left; margin:0 auto; font-size: 86%; width: 80%; padding: 0 10% 0 10%;}
.tr_copy{text-align: right; margin:0 auto; font-size: 86%; width: 80%; padding: 0 10% 0 10%;}