@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  outline: none;
}

/*==========================================================*/
/*	responsive
-----------------------------------------------------------*/
/*	css
-----------------------------------------------------------*/
.hover {
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover:hover {
  opacity: 0.7;
}

.move.animation {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  display: block;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.move.animation.moving {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.opacity.animation {
  display: block;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.opacity.animation.moving {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/*==========================================================*/
html {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, select, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, button, caption, cite, code, dfn, em, input, optgroup, option, select, strong, textarea, th, var {
  font: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: "源ノ角ゴシック Regular", 源ノ角ゴシック, 游ゴシック体, "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,メイリオ,sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subtext *, canvas, .is_dragging *, .js-draw-text, .subtitles, .subtitles span, .to-scroll, .menu-li .in, .menu-li a, .single-sub-title span, .work-sub-title span, .link, .view-more a, .work-title a, .unselectable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-fb:before {
  content: "f";
}

.i-tw:before {
  content: "t";
}

.i-inst:before {
  content: "i";
}

.i {
  font-family: "i";
}

.is_waiting body {
  overflow: hidden !important;
}

body, a {
  color: #333;
}

article {
  display: block;
}

video, img, canvas {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}

/*	input
-----------------------------------------------------------*/
input[type=text], input[type=email] {
  width: 450px;
  height: 50px;
  border: 1px solid #999999;
  font-size: 15px;
  color: #000;
  padding: 0px 10px;
  -webkit-appearance: none;
  outline: 0;
  border-radius: 0px;
  box-sizing: border-box;
}
@media only screen and (max-width: 380px) {
  input[type=text], input[type=email] {
    width: 100%;
    height: 42px;
    border: 1px solid #999999;
    font-size: 14px;
    color: #000;
    padding: 0px 10px;
    -webkit-appearance: none;
    outline: 0;
    border-radius: 0px;
    box-sizing: border-box;
  }
}

/* ===== select ===== */
label.select_cover {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 380px) {
  label.select_cover {
    width: 100%;
  }
}
label.select_cover:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 5px;
  display: inline-block;
  margin-right: 10px;
  border: 5px solid transparent;
  border-color: black black transparent transparent;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media only screen and (max-width: 380px) {
  label.select_cover:before {
    top: 12px;
  }
}

textarea {
  width: 300px;
  height: 200px;
  border: 1px solid #999999;
  font-size: 15px;
  color: #000;
  padding: 15px 10px;
}
@media only screen and (max-width: 380px) {
  textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #999999;
    font-size: 14px;
    color: #000;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 1px;
    -webkit-appearance: none;
    line-height: 1.4;
  }
}

select {
  position: relative;
  z-index: 1;
  border: 1px solid #999999;
  box-sizing: border-box;
  color: #000;
  width: 450px;
  height: 50px;
  padding: 0 10px;
  font-size: 15px;
  border-radius: 1px;
  background-color: white;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
@media only screen and (max-width: 380px) {
  select {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }
}

select::-ms-expand {
  display: none;
}

/*  img
---------------------------------------------------------------*/
img {
  border: none;
}

/*  cf
---------------------------------------------------------------*/
/* .〇〇:after {
    content: '';
    display: table;
    clear: both;
} */
/*  align
---------------------------------------------------------------*/
.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/*  ul
---------------------------------------------------------------*/
li {
  list-style-type: none;
}

/*  font
---------------------------------------------------------------*/
:root {
  --max-size:1.66rem;
  --base-size:1.4rem;
  --slide-tb:120vw;
  --slide-mb:150vw;
  --land-mb:80vw;
}

.font {
  font-size: calc(var(--base-size) * 1.9);
}

#wrap {
  position: relative;
  z-index: 91;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.inner1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .inner,
  .inner1200,
  .inner1400 {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .spOnly {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
.orange {
  color: #f08200;
}

/*==========================================================*/
/*==========================================================*/
/*==========================================================*/
.btnLineAnimation a {
  text-align: center;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  transition: 0.3s;
  border: 2px solid #333;
  min-width: 200px;
  padding: 10px 50px;
}
@media only screen and (max-width: 768px) {
  .btnLineAnimation a {
    font-size: 14px;
  }
}
.btnLineAnimation a:before, .btnLineAnimation a:after {
  position: absolute;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 2px solid transparent;
}
.btnLineAnimation a:before {
  top: -2px;
  left: -2px;
}
.btnLineAnimation a:after {
  bottom: -2px;
  right: -2px;
}
.btnLineAnimation a:hover {
  color: #f08200 !important;
}
.btnLineAnimation a:hover:before, .btnLineAnimation a:hover:after {
  width: 100%;
  height: 100%;
}
.btnLineAnimation a:hover:before {
  border-bottom-color: #f08200;
  border-left-color: #f08200;
  transition: height .3s, width .3s .3s;
}
.btnLineAnimation a:hover:after {
  border-top-color: #f08200;
  border-right-color: #f08200;
  transition: height .3s, width .3s .3s;
}

.btnNormal a {
  position: relative;
  display: block;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}
.btnNormal a:before {
  content: '';
  background: url(../img/btn_icon_arrow.png) no-repeat center center;
  position: absolute;
  right: 30px;
  top: 50%;
  bottom: 0;
  width: 80px;
  height: 6px;
  transform: translate3d(0, -50%, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btnNormal a:hover:before {
  transform: translate3d(10px, -50%, 0);
}
.btnNormal.homeBtn a {
  height: 130px;
  width: 410px;
}
@media only screen and (max-width: 768px) {
  .btnNormal.homeBtn a {
    height: 90px;
    width: 100%;
  }
}
.btnNormal.homeBtnSmall a {
  height: 90px;
  width: 300px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .btnNormal.homeBtnSmall a {
    height: 60px;
    width: 100%;
    font-size: 14px;
  }
}
.btnNormal.homeBtnSmall a .btnIn {
  margin-left: 50px;
}
.btnNormal.greenBtn a {
  background: #232427;
}

/*=========================================================*/
/*	SEC*/
/*=========================================================*/
article.sec {
  margin-top: 88px;
}
@media only screen and (max-width: 768px) {
  article.sec {
    margin-top: 0px;
  }
}

article section.h1 {
  background: url(../img/bg_h1.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  min-height: 320px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  article section.h1 {
    min-height: 170px;
  }
}
@media only screen and (max-width: 380px) {
  article section.h1 {
    min-height: 170px;
  }
}

article section.h1 h1 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  display: block;
  margin-top: 20px;
  font-family: YakuHanJP,-apple-system,BlinkMacSystemFont,Helvetica Neue,Yu Gothic,YuGothic,Meiryo,sans-serif;
}
@media only screen and (max-width: 768px) {
  article section.h1 h1 {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 380px) {
  article section.h1 h1 {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* h2 */
.sec .h1 .eng02 {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  -webkit-transform: skewX(160deg);
  -moz-transform: skewX(160deg);
  transform: skewX(160deg);
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .sec .h1 .eng02 {
    font-size: 22px;
    margin-bottom: 10px;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
  }
}
@media only screen and (max-width: 380px) {
  .sec .h1 .eng02 {
    font-size: 22px;
    border: none;
    margin-bottom: 10px;
  }
}

.sec .h1 .eng02 span {
  display: block;
  transform: skewX(-160deg);
  padding: 0 40px 0 49px;
  line-height: 0.9;
}
@media only screen and (max-width: 768px) {
  .sec .h1 .eng02 span {
    padding: 0 10px 0 14px;
  }
}
@media only screen and (max-width: 380px) {
  .sec .h1 .eng02 span {
    padding: 0;
  }
}

.breadWrap {
  background: #f9f6ed;
  padding: 40px 0;
  text-align: center;
}
.breadWrap .h1h1 {
  font-size: 26px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .breadWrap .h1h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
.breadWrap .subTitle {
  font-size: 16px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .breadWrap .subTitle {
    font-size: 14px;
  }
}

.breadcrumbIn {
  display: flex;
  color: #333;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .breadcrumbIn {
    width: auto;
    margin-right: auto;
    display: table;
  }
}
.breadcrumbIn:after {
  content: '';
  display: table;
  clear: both;
}
.breadcrumbIn #breadIcon {
  width: 16px;
}
.breadcrumbIn .breadcrumb_item {
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  .breadcrumbIn .breadcrumb_item {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
  }
}

.sec a.textLink {
  color: #0080cc;
  text-decoration: underline;
}
.sec a.textLink:hover {
  text-decoration: none;
}
.sec h2.whiteTitle {
  color: #fff;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .sec h2.whiteTitle {
    font-size: 18px;
  }
}
.sec h2.blueTitle {
  color: #02adf3;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .sec h2.blueTitle {
    font-size: 18px;
  }
}
.sec .h2Big {
  text-align: center;
}
.sec .h2Big h2 {
  display: inline-block;
  text-align: center;
  font-size: 15px !important;
}
.sec .h2Big .sub {
  text-align: center;
  position: relative;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .sec .h2Big .sub {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.sec .h2Big .sub:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #1b4c98;
  width: 60px;
  height: 2px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.sec .secTitleh2 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .sec .secTitleh2 {
    margin-bottom: 30px;
  }
}
.sec .secTitleh2 h2.blueTitle {
  font-size: 38px;
}
@media only screen and (max-width: 768px) {
  .sec .secTitleh2 h2.blueTitle {
    font-size: 30px;
  }
}
.sec .secTitleh2 p.titleSub {
  font-size: 16px;
  line-height: 1.80;
  letter-spacing: 0.04em;
}
.sec h3.normalTitle {
  position: relative;
  font-size: 22px;
  margin-bottom: 50px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .sec h3.normalTitle {
    font-size: 18px;
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
}
.sec h3.normalTitle:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #bd9e2c;
  width: 60px;
  height: 5px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.sec h3.under {
  position: relative;
  font-size: 22px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .sec h3.under {
    font-size: 18px;
  }
}
.sec h3.under:after {
  content: '';
  display: block;
  margin-top: .5em;
  width: 100%;
  height: 2px;
  background: #bc9352;
  background: linear-gradient(90deg, #ebd98c 0%, #bc9352 100%);
}
.sec h3.blueText {
  color: #0080cc;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .sec h3.blueText {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
}
.sec h4.xdd {
  position: relative;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
}
.sec h4.xdd:after {
  content: '';
  display: block;
  width: 4px;
  height: 100%;
  background: #f08200;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .sec h4.xdd {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
  }
}
.sec h5 {
  position: relative;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 25px;
}
@media only screen and (max-width: 768px) {
  .sec h5 {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
    padding-left: 18px;
  }
}
.sec h5:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 4px solid #f08200;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .sec h5:before {
    width: 10px;
    height: 10px;
    border: 3px solid #f08200;
  }
}
.sec h6 {
  color: #f08200;
  border-bottom: 1px dotted #222;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .sec h6 {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
}
.sec .mb0 {
  margin-bottom: 0px !important;
}
.sec .mb10 {
  margin-bottom: 10px !important;
}
.sec .mb20 {
  margin-bottom: 20px !important;
}
.sec .mb30 {
  margin-bottom: 30px !important;
}
.sec .mb40 {
  margin-bottom: 40px !important;
}
.sec .mb50 {
  margin-bottom: 50px !important;
}
.sec .mb60 {
  margin-bottom: 60px;
}
.sec .mb80 {
  margin-bottom: 80px !important;
}
@media only screen and (max-width: 768px) {
  .sec .mb10 {
    margin-bottom: 10px !important;
  }
  .sec .mb20 {
    margin-bottom: 20px !important;
  }
  .sec .mb30 {
    margin-bottom: 30px !important;
  }
  .sec .mb40 {
    margin-bottom: 30px !important;
  }
  .sec .mb50 {
    margin-bottom: 30px !important;
  }
  .sec .mb60 {
    margin-bottom: 30px !important;
  }
  .sec .mb80 {
    margin-bottom: 50px !important;
  }
}
.sec .btnWarpFlex .button {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .sec .btnWarpFlex .button {
    width: 100%;
  }
  .sec .btnWarpFlex .button a {
    width: 100%;
  }
}
.sec .btnWarpFlex .button._01 {
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
  .sec .btnWarpFlex .button._01 {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
.sec .btnWarpFlex .button._02 {
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .sec .btnWarpFlex .button._02 {
    margin-left: 0px;
  }
}
.sec .boxDotLine {
  border: 1px dashed #f08200;
  padding: 20px 20px;
}

.default {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .default {
    padding: 40px 0;
  }
}

.infoOuter dl {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .infoOuter dl {
    width: 100%;
    display: block;
    border-image-width: 100%;
  }
}
.infoOuter dl dt {
  width: 220px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CFCFCF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 768px) {
  .infoOuter dl dt {
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.infoOuter dl dd {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-flex: 1 1 auto;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F2F2F2;
  font-size: 15px;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 768px) {
  .infoOuter dl dd {
    width: 100%;
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.staffBlock00 {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .staffBlock00 {
    padding: 40px 0;
  }
}

.eventBlock00 {
  padding: 80px 0 50px;
}
@media only screen and (max-width: 768px) {
  .eventBlock00 {
    padding: 40px 0 0px;
  }
}

.flexBoxDX {
  background-color: #fbf7ee;
}
.flexBoxDX .ttlA {
  background: #a26a11;
  color: #fff;
  padding: 10px 30px;
  font-size: 15px;
  display: inline-block;
  min-width: 250px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .flexBoxDX .ttlA {
    font-size: 13px;
    min-width: none;
    width: 100%;
  }
}
.flexBoxDX .dDetail {
  padding: 30px 40px;
}
@media only screen and (max-width: 768px) {
  .flexBoxDX .dDetail {
    padding: 20px 20px;
  }
}
.flexBoxDX .dDetail:after {
  content: '';
  display: table;
  clear: both;
}
.flexBoxDX .dDetail .event_box_in {
  width: 150px;
  float: left;
  margin: 0 30px 0 30px;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .flexBoxDX .dDetail .event_box_in {
    width: 100%;
    float: none;
    margin: 0 20px 15px 10px;
    font-size: 13px;
  }
}
.flexBoxDX .dDetail .ddi {
  width: 250px;
  float: left;
  margin: 0 30px 0 30px;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .flexBoxDX .dDetail .ddi {
    width: 100%;
    float: none;
    margin: 0 20px 0 10px;
    font-size: 13px;
  }
}

.staffBlock01 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .staffBlock01 {
    margin-bottom: 40px;
  }
}
.staffBlock01 .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .staffBlock01 .flexWrap {
    display: block;
  }
}
.staffBlock01 .flexWrap .imgBox {
  -webkit-flex-basis: 530px;
  flex-basis: 530px;
  margin-left: 80px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .staffBlock01 .flexWrap .imgBox {
    margin-left: 0px;
    margin-bottom: 20px;
  }
}
.staffBlock01 .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .staffBlock01 .flexWrap .textBox .right img {
    max-width: 150px;
  }
}

.staffBlock03 {
  padding: 100px 0 60px;
}
@media only screen and (max-width: 768px) {
  .staffBlock03 {
    padding: 60px 0 30px;
  }
}

.staffBlock04 .staffWrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .staffBlock04 .staffWrap {
    display: block;
  }
}
.staffBlock04 .staffWrap .staffBox {
  width: 48%;
  position: relative;
  border: 1px dashed #666;
  padding: 30px 30px 40px;
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.staffBlock04 .staffWrap .staffBox:nth-child(3), .staffBlock04 .staffWrap .staffBox:nth-child(4), .staffBlock04 .staffWrap .staffBox:nth-child(5), .staffBlock04 .staffWrap .staffBox:nth-child(5), .staffBlock04 .staffWrap .staffBox:nth-child(6), .staffBlock04 .staffWrap .staffBox:nth-child(7), .staffBlock04 .staffWrap .staffBox:nth-child(8), .staffBlock04 .staffWrap .staffBox:nth-child(9), .staffBlock04 .staffWrap .staffBox:nth-child(10), .staffBlock04 .staffWrap .staffBox:nth-child(11), .staffBlock04 .staffWrap .staffBox:nth-child(12), .staffBlock04 .staffWrap .staffBox:nth-child(13), .staffBlock04 .staffWrap .staffBox:nth-child(14) {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .staffBlock04 .staffWrap .staffBox {
    width: 100%;
    padding: 30px 20px 40px;
  }
  .staffBlock04 .staffWrap .staffBox:nth-child(2), .staffBlock04 .staffWrap .staffBox:nth-child(3), .staffBlock04 .staffWrap .staffBox:nth-child(4), .staffBlock04 .staffWrap .staffBox:nth-child(5), .staffBlock04 .staffWrap .staffBox:nth-child(5), .staffBlock04 .staffWrap .staffBox:nth-child(6), .staffBlock04 .staffWrap .staffBox:nth-child(7), .staffBlock04 .staffWrap .staffBox:nth-child(8), .staffBlock04 .staffWrap .staffBox:nth-child(9), .staffBlock04 .staffWrap .staffBox:nth-child(10), .staffBlock04 .staffWrap .staffBox:nth-child(11), .staffBlock04 .staffWrap .staffBox:nth-child(12), .staffBlock04 .staffWrap .staffBox:nth-child(13), .staffBlock04 .staffWrap .staffBox:nth-child(14) {
    margin-top: 40px;
  }
}
.staffBlock04 .staffWrap .staffBox .imgBox {
  -webkit-flex-basis: 192px;
  flex-basis: 192px;
  margin-right: 20px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .staffBlock04 .staffWrap .staffBox .imgBox {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    margin-right: 0px;
    margin-bottom: 25px;
  }
}
.staffBlock04 .staffWrap .staffBox .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.staffBlock04 .staffWrap .staffBox .textBox .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.staffBlock04 .staffWrap .staffBox .textBox .bbb .ttl {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}
.staffBlock04 .staffWrap .staffBox .textBox .bbb p {
  font-size: 13px;
  line-height: 1.85;
}

.accessWrap {
  padding: 0px 0 80px;
}
@media only screen and (max-width: 768px) {
  .accessWrap {
    padding: 40px 0;
  }
}
.accessWrap .accessBody {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.accessWrap .accessBody .accessBox {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .accessWrap .accessBody {
    display: block;
    margin-bottom: 0px;
  }
  .accessWrap .accessBody .accessBox {
    width: 100%;
  }
  .accessWrap .accessBody .accessBox._01 {
    margin-bottom: 60px;
  }
}
.accessWrap .accessBody p {
  font-size: 14px;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .accessWrap .accessBody p {
    font-size: 12px;
  }
}
.accessWrap .accessBody .ttiA {
  margin-top: 40px;
  text-align: center;
  color: #232427;
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .accessWrap .accessBody .ttiA {
    margin-top: 20px;
    font-size: 16px;
  }
}
.accessWrap .topOpen {
  margin-top: 50px;
}

.recruitTopWrap {
  position: relative;
  margin-top: 80px;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .recruitTopWrap {
    margin-top: 0px;
    padding: 40px 0;
  }
}
.recruitTopWrap .imgBox {
  width: 50vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .recruitTopWrap .imgBox {
    width: 100%;
    position: relative;
  }
}
.recruitTopWrap .imgBox img {
  max-width: 100%;
  height: auto;
}
.recruitTopWrap .innerA {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .recruitTopWrap .innerA {
    padding: 0 20px;
  }
}
.recruitTopWrap .innerA .textBox .flexZ {
  display: inline-block;
  background-color: #fcf6ef;
  padding: 100px 50px;
  min-width: 510px;
}
@media only screen and (max-width: 768px) {
  .recruitTopWrap .innerA .textBox .flexZ {
    padding: 30px 30px;
    min-width: auto;
    width: 100%;
  }
}
.recruitTopWrap .innerA .textBox dl {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .recruitTopWrap .innerA .textBox dl {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.recruitTopWrap .innerA .textBox dl dt {
  color: #f08200;
  font-size: 40px;
  font-family: arial;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .recruitTopWrap .innerA .textBox dl dt {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.recruitTopWrap .innerA .textBox dl dd {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .recruitTopWrap .innerA .textBox dl dd {
    font-size: 14px;
  }
}

.valueBlock05 {
  background: #f6f6f6;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .valueBlock05 {
    padding: 40px 0;
  }
}
.valueBlock05 .whiteWrapValue {
  padding: 60px 50px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .valueBlock05 .whiteWrapValue {
    padding: 30px 20px;
  }
}
.valueBlock05 .whiteWrapValue._01 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .valueBlock05 .whiteWrapValue._01 {
    margin-bottom: 30px;
  }
}
.valueBlock05 .whiteWrapValue .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .valueBlock05 .whiteWrapValue .flexWrap {
    display: block;
  }
}
.valueBlock05 .whiteWrapValue .flexWrap .imgBox {
  -webkit-flex-basis: 490px;
  flex-basis: 490px;
  margin-left: 60px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .valueBlock05 .whiteWrapValue .flexWrap .imgBox {
    margin-left: 0px;
    margin-bottom: 30px;
  }
}
.valueBlock05 .whiteWrapValue .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.valueBlock05 .whiteWrapValue .flexWrap .textBox .ttl {
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .valueBlock05 .whiteWrapValue .flexWrap .textBox .ttl {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.valueBlock05 .whiteWrapValue .flexWrap .textBox p {
  margin-bottom: 30px;
}
.valueBlock05 .whiteWrapValue .flexWrap .textBox .btnBox {
  text-align: left;
}

/*=========================================================*/
/*	FIRST*/
/*=========================================================*/
.firstBlock01 .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .firstBlock01 .flexWrap {
    display: block;
  }
}
.firstBlock01 .flexWrap .textWrap {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.firstBlock01 .flexWrap .textWrap .imgSitei {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .firstBlock01 .flexWrap .textWrap .imgSitei {
    margin-bottom: 30px;
  }
  .firstBlock01 .flexWrap .textWrap .imgSitei img {
    max-width: 200px;
  }
}
.firstBlock01 .flexWrap .textWrap .boxWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .firstBlock01 .flexWrap .textWrap .boxWrap {
    display: block;
    margin-top: 40px;
  }
}
.firstBlock01 .flexWrap .textWrap .boxWrap .boxDotLine._01 {
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .firstBlock01 .flexWrap .textWrap .boxWrap .boxDotLine._01 {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
.firstBlock01 .flexWrap .textWrap .boxWrap .boxDotLine._02 {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .firstBlock01 .flexWrap .textWrap .boxWrap .boxDotLine._02 {
    margin-left: 0px;
    margin-bottom: 30px;
  }
}
.firstBlock01 .flexWrap .textWrap .boxWrap .boxDotLine h4 {
  margin-top: 0;
}
.firstBlock01 .flexWrap .imgWrap {
  -webkit-flex-basis: 570px;
  flex-basis: 570px;
  margin-left: 80px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .firstBlock01 .flexWrap .imgWrap {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    margin-left: 0px;
  }
}

.firstBlock02 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .firstBlock02 {
    margin-bottom: 40px;
  }
}
.firstBlock02 .titleDDL {
  margin-top: 70px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .firstBlock02 .titleDDL {
    margin-top: 0px;
    margin-bottom: 30px;
  }
}
.firstBlock02 .imgWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .firstBlock02 .imgWrap {
    display: block;
  }
  .firstBlock02 .imgWrap .imgBox {
    margin-top: 20px;
  }
  .firstBlock02 .imgWrap .imgBox:first-child {
    margin-top: 0;
  }
}

.firstBlock03 {
  background: #161527;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 {
    padding: 40px 0;
  }
}
.firstBlock03 .ttlBox {
  margin-top: 50px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 .ttlBox {
    margin-top: 30px;
  }
}
.firstBlock03 .ttlBox .ttl {
  font-size: 16px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 .ttlBox .ttl {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.firstBlock03 .ttlBox dl dt {
  font-size: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 .ttlBox dl dt {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.firstBlock03 .ttlBox dl dd {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 .ttlBox dl dd {
    font-size: 13px;
  }
}
.firstBlock03 ._in02 {
  margin-top: 80px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.firstBlock03 ._in02 .inBox ul.number01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number01 {
    display: block;
  }
}
.firstBlock03 ._in02 .inBox ul.number01 li {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number01 li {
    width: 100%;
    margin-top: 40px;
  }
  .firstBlock03 ._in02 .inBox ul.number01 li:first-child {
    margin-top: 0;
  }
}
.firstBlock03 ._in02 .inBox ul.number01 li .number {
  position: relative;
  font-size: 42px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
  color: #f08200;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: 'Oswald', sans-serif;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number01 li .number {
    font-size: 40px;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
.firstBlock03 ._in02 .inBox ul.number01 li .number:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #bd9e2c;
  width: 60px;
  height: 1px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.firstBlock03 ._in02 .inBox ul.number01 li .textA {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}
.firstBlock03 ._in02 .inBox ul.number01 li .textA dt {
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}
.firstBlock03 ._in02 .inBox ul.number02 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number02 {
    display: block;
  }
}
.firstBlock03 ._in02 .inBox ul.number02 li {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number02 li {
    width: 100%;
    margin-top: 40px;
  }
  .firstBlock03 ._in02 .inBox ul.number02 li:first-child {
    margin-top: 0;
  }
}
.firstBlock03 ._in02 .inBox ul.number02 li:first-child {
  margin-left: 16%;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number02 li:first-child {
    margin-left: 0%;
  }
}
.firstBlock03 ._in02 .inBox ul.number02 li:last-child {
  margin-right: 16%;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number02 li:last-child {
    margin-right: 0%;
  }
}
.firstBlock03 ._in02 .inBox ul.number02 li .number {
  position: relative;
  font-size: 42px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
  color: #f08200;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: 'Oswald', sans-serif;
}
@media only screen and (max-width: 768px) {
  .firstBlock03 ._in02 .inBox ul.number02 li .number {
    font-size: 40px;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
.firstBlock03 ._in02 .inBox ul.number02 li .number:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #bd9e2c;
  width: 60px;
  height: 1px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.firstBlock03 ._in02 .inBox ul.number02 li .textA {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}
.firstBlock03 ._in02 .inBox ul.number02 li .textA dt {
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}

.firstBlock04 {
  background: #f6f6f6;
}
.firstBlock04 .ttl_x {
  color: #444;
  font-size: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.06em;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .firstBlock04 .ttl_x {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.firstBlock04 .ttl_x:before, .firstBlock04 .ttl_x:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #444;
}
.firstBlock04 .ttl_x:before {
  display: inline;
  margin-right: .4em;
}
.firstBlock04 .ttl_x:after {
  display: block;
  margin-left: .4em;
}
.firstBlock04 .whiteBox02 {
  background: #fff;
  margin-bottom: 50px;
  padding: 40px 40px;
}
@media only screen and (max-width: 768px) {
  .firstBlock04 .whiteBox02 {
    margin-bottom: 30px;
    padding: 30px 20px;
  }
}
.firstBlock04 .whiteBox02 .ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .firstBlock04 .whiteBox02 .ttl {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.firstBlock04 .whiteBox02 .t_box {
  text-align: center;
}
.firstBlock04 .whiteBox02 .t_box p {
  text-align: left;
  display: inline-block;
}

.firstBlock05 {
  margin-top: 80px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.firstBlock05 .flexWrap .flexBox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox {
    display: block;
  }
}
.firstBlock05 .flexWrap .flexBox .box {
  width: 680px;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox .box {
    width: 100%;
  }
}
.firstBlock05 .flexWrap .flexBox .box._01, .firstBlock05 .flexWrap .flexBox .box._02 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox .box._01, .firstBlock05 .flexWrap .flexBox .box._02 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox .box._03 {
    margin-bottom: 40px;
  }
}
.firstBlock05 .flexWrap .flexBox .box._01 {
  background: #fcf6ef;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 40px;
  padding-left: 50px;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox .box._01 {
    padding: 30px 20px;
  }
}
.firstBlock05 .flexWrap .flexBox .box._01 .inB dl dt {
  color: #f08200;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox .box._01 .inB dl dt {
    font-size: 18px;
  }
}
.firstBlock05 .flexWrap .flexBox .box._01 .inB dl dd {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox .box._01 .inB dl dd {
    font-size: 14px;
  }
}
.firstBlock05 .flexWrap .flexBox .box._02 .imgBox, .firstBlock05 .flexWrap .flexBox .box._03 .imgBox, .firstBlock05 .flexWrap .flexBox .box._04 .imgBox {
  margin-bottom: 15px;
}
.firstBlock05 .flexWrap .flexBox .box._02 .textA, .firstBlock05 .flexWrap .flexBox .box._03 .textA, .firstBlock05 .flexWrap .flexBox .box._04 .textA {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .firstBlock05 .flexWrap .flexBox .box._02 .textA, .firstBlock05 .flexWrap .flexBox .box._03 .textA, .firstBlock05 .flexWrap .flexBox .box._04 .textA {
    font-size: 13px;
  }
}

.firstBlock06 ._in .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #333333;
}
@media only screen and (max-width: 768px) {
  .firstBlock06 ._in .flexWrap {
    display: block;
  }
}
.firstBlock06 ._in .flexWrap .imgBox {
  -webkit-flex-basis: 38%;
  flex-basis: 38%;
  margin-right: 60px;
  margin-bottom: 0;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  transition: .6s;
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 768px) {
  .firstBlock06 ._in .flexWrap .imgBox {
    margin-right: 0px;
  }
}
.firstBlock06 ._in .flexWrap .imgBox:before {
  content: '';
  display: block;
  padding-top: 72%;
}
.firstBlock06 ._in .flexWrap .imgBox span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: .6s;
  transition: .6s;
  background: url() center no-repeat #e5e5e5;
}
.firstBlock06 ._in .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .firstBlock06 ._in .flexWrap .textBox {
    padding: 40px 20px;
  }
}
.firstBlock06 ._in .flexWrap .textBox .detailTa {
  max-width: 780px;
}
.firstBlock06 ._in .flexWrap .textBox .detailTa .imgB {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .firstBlock06 ._in .flexWrap .textBox .detailTa .imgB img {
    max-width: 150px;
  }
}
.firstBlock06 ._in .flexWrap .textBox .detailTa .ttlSecond {
  font-size: 18px;
  font-weight: bold;
  color: #f08200;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .firstBlock06 ._in .flexWrap .textBox .detailTa .ttlSecond {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.firstBlock06 ._in .flexWrap .textBox .detailTa p {
  color: #fff;
  margin-bottom: 30px;
}
.firstBlock06 ._in .flexWrap .textBox .btnLineAnimation a {
  border-color: #fff;
  color: #fff;
}

.facilityBlock01 .btnWrap .btnBox {
  text-align: center;
}
.facilityBlock01 .btnWrap .btnBox .btn {
  display: inline-block;
  margin: 0 10px;
}
@media only screen and (max-width: 768px) {
  .facilityBlock01 .btnWrap .btnBox .btn {
    margin: 20px 0px 0;
  }
  .facilityBlock01 .btnWrap .btnBox .btn:first-child {
    margin-top: 0;
  }
}
.facilityBlock01 .btnWrap .btnBox .btn a {
  transition: all .2s;
}

.facilityBlock02 {
  position: relative;
  min-height: 530px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .facilityBlock02 {
    min-height: 320px;
  }
}
.facilityBlock02 .imgBox span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: .6s;
  transition: .6s;
  background: url() center no-repeat #e5e5e5;
}
.facilityBlock02 ._x {
  position: relative;
  top: 100px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .facilityBlock02 ._x {
    top: 30px;
  }
}
.facilityBlock02 .boxWrap {
  background: #fff;
  padding: 80px 80px;
}
@media only screen and (max-width: 768px) {
  .facilityBlock02 .boxWrap {
    padding: 30px 20px;
  }
}
.facilityBlock02 .boxWrap .ttlBoxX {
  margin-bottom: 20px;
}

.facilityBlock03 .btnWrapD {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .facilityBlock03 .btnWrapD {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .facilityBlock03 .btnWrapD .btnLeftline {
    margin-top: 20px;
  }
  .facilityBlock03 .btnWrapD .btnLeftline:first-child {
    margin-top: 0;
  }
}

.facilityBlock04._bggray {
  background: #f6f6f6;
}
.facilityBlock04 .flexWrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .facilityBlock04 .flexWrap {
    display: block;
    margin-top: 30px;
  }
}
.facilityBlock04 .flexWrap .flexBox {
  width: 540px;
}
.facilityBlock04 .flexWrap .flexBox:nth-child(1), .facilityBlock04 .flexWrap .flexBox:nth-child(2) {
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .facilityBlock04 .flexWrap .flexBox {
    width: 100%;
  }
  .facilityBlock04 .flexWrap .flexBox:nth-child(1), .facilityBlock04 .flexWrap .flexBox:nth-child(2) {
    margin-bottom: 50px;
  }
  .facilityBlock04 .flexWrap .flexBox:nth-child(1)._b0, .facilityBlock04 .flexWrap .flexBox:nth-child(2)._b0 {
    margin-bottom: 0;
  }
  .facilityBlock04 .flexWrap .flexBox:nth-child(3) {
    margin-bottom: 50px;
  }
  .facilityBlock04 .flexWrap .flexBox:nth-child(3)._b0 {
    margin-bottom: 0;
  }
}
.facilityBlock04 .flexWrap .flexBox .imgB {
  margin-bottom: 30px;
}
.facilityBlock04 .flexWrap .flexBox .textArea dl dt {
  border-left: 3px solid #f08200;
  padding-left: 15px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.facilityBlock04 .flexWrap .flexBox .textArea dl dd {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.85;
}

.studioBlock01 {
  background: url(../img/studio_img01.jpg) no-repeat center center;
  background-size: cover;
}
.studioBlock01 dl {
  color: #fff;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .studioBlock01 dl {
    margin-bottom: 20px;
  }
}
.studioBlock01 dl dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .studioBlock01 dl dt {
    font-size: 18px;
  }
}
.studioBlock01 dl dd {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .studioBlock01 dl dd {
    font-size: 14px;
  }
}
.studioBlock01 .pdfWrap {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .studioBlock01 .pdfWrap {
    display: block;
  }
}
.studioBlock01 .pdfWrap .btnFx._01 {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .studioBlock01 .pdfWrap .btnFx._01 {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
.studioBlock01 .pdfWrap .btnFx a {
  color: #fff;
  border: 1px solid #fff;
  min-width: 250px;
  font-size: 15px;
  padding: 10px 50px;
  display: inline-block;
  background: url(../img/icon_pdf.png) no-repeat 96% 50%;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .studioBlock01 .pdfWrap .btnFx a {
    min-width: 250px;
    width: 100%;
    font-size: 14px;
    padding: 10px 30px;
  }
}
.studioBlock01 .pdfWrap .btnFx a:hover {
  opacity: 0.7;
}

.studioBlock02 {
  text-align: center;
}
.studioBlock02 .logo {
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .studioBlock02 .logo img {
    max-width: 150px;
    margin: 0 auto;
  }
}
.studioBlock02 p {
  margin-bottom: 40px;
}

.studioBlock03 {
  background: #161527;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 {
    padding: 40px 0;
  }
}
.studioBlock03._03 {
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .studioBlock03._03 {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 768px) {
  .studioBlock03 .logo img {
    max-width: 150px;
    margin: 0 auto;
  }
}
.studioBlock03 .ttlBox {
  margin-top: 50px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 .ttlBox {
    margin-top: 30px;
  }
}
.studioBlock03 .ttlBox .ttl {
  font-size: 16px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 .ttlBox .ttl {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.studioBlock03 .ttlBox dl dt {
  font-size: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 .ttlBox dl dt {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.studioBlock03 .ttlBox dl dd {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 .ttlBox dl dd {
    font-size: 13px;
  }
}
.studioBlock03 ._in02 {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 ._in02 {
    margin-top: 30px;
  }
}
.studioBlock03 ._in02 .inBox ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 ._in02 .inBox ul {
    flex-basis: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.studioBlock03 ._in02 .inBox ul li {
  width: 20%;
  margin-bottom: 60px;
}
.studioBlock03 ._in02 .inBox ul li:nth-child(6), .studioBlock03 ._in02 .inBox ul li:nth-child(7), .studioBlock03 ._in02 .inBox ul li:nth-child(8), .studioBlock03 ._in02 .inBox ul li:nth-child(9), .studioBlock03 ._in02 .inBox ul li:nth-child(10) {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 ._in02 .inBox ul li {
    width: 50%;
    margin-bottom: 30px;
  }
  .studioBlock03 ._in02 .inBox ul li:nth-child(6), .studioBlock03 ._in02 .inBox ul li:nth-child(7), .studioBlock03 ._in02 .inBox ul li:nth-child(8) {
    margin-bottom: 30px;
  }
}
.studioBlock03 ._in02 .inBox ul li .number {
  position: relative;
  font-size: 42px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
  color: #f08200;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: 'Oswald', sans-serif;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 ._in02 .inBox ul li .number {
    font-size: 34px;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
.studioBlock03 ._in02 .inBox ul li .number:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #bd9e2c;
  width: 60px;
  height: 1px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.studioBlock03 ._in02 .inBox ul li .textA {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
.studioBlock03 ._in02 .inBox ul li .textA a {
  position: relative;
  display: block;
  color: #fff;
  padding-bottom: 30px;
}
.studioBlock03 ._in02 .inBox ul li .textA a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 49%;
  transform: translate3d(0, -50%, 0);
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: scaleX(0.8) rotate(135deg) translate3d(0, 0, 0);
  -ms-transform: scaleX(0.8) rotate(135deg) translate3d(0, 0, 0);
  -o-transform: scaleX(0.8) rotate(135deg) translate3d(0, 0, 0);
  transform: scaleX(0.8) rotate(135deg) translate3d(0, 0, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 768px) {
  .studioBlock03 ._in02 .inBox ul li .textA a:before {
    left: 46%;
  }
}
.studioBlock03 ._in02 .inBox ul li .textA a:hover:before {
  border-top: 2px solid #f08200;
  border-right: 2px solid #f08200;
}
.studioBlock03 ._in02 .inBox ul li .textA dl dt {
  text-align: center;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 ._in02 .inBox ul li .textA dl dt {
    font-size: 14px;
  }
}
.studioBlock03 ._in02 .inBox ul li .textA dl dd {
  text-align: center;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .studioBlock03 ._in02 .inBox ul li .textA dl dd {
    font-size: 13px;
  }
}

.studioBlock04 .flexWrap .listB {
  display: flex;
}
.studioBlock04 .flexWrap .listB._reverce {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .studioBlock04 .flexWrap .listB {
    display: block;
  }
}
.studioBlock04 .flexWrap .listB .imgBox {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .studioBlock04 .flexWrap .listB .imgBox {
    width: 100%;
  }
}
.studioBlock04 .flexWrap .listB .textBox {
  width: 50%;
  padding: 40px 40px 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .studioBlock04 .flexWrap .listB .textBox {
    width: 100%;
    padding: 30px 0px 30px;
  }
}
.studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A {
  display: flex;
}
.studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A .number {
  position: relative;
  font-size: 42px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-align: center;
  color: #f08200;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A .number {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A .number:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #bd9e2c;
  width: 40px;
  height: 1px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A dl {
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  .studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A dl {
    margin-left: 10px;
  }
}
.studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A dl dt {
  font-size: 30px;
  font-family: arial;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A dl dt {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.studioBlock04 .flexWrap .listB .textBox .detailText .ttl .h2A dl dd {
  font-size: 14px;
  color: #333;
}
.studioBlock04 .flexWrap .listB .textBox .detailText p {
  font-size: 13px;
  line-height: 1.75;
}
.studioBlock04 .flexWrap .listB .textBox .detailText .btnBody {
  margin-top: 20px;
}
.studioBlock04 .flexWrap .listB .textBox .detailText .btnBody .btnBox {
  text-align: left;
}
.studioBlock04 .flexWrap .listB .textBox .detailText .btnBody .btnBox a {
  text-align: left;
}

.priceBlock05 h3 {
  margin-bottom: 25px !important;
}
.priceBlock05 .iconWrap .icon {
  display: inline-block;
  color: #fff;
  margin-bottom: 20px;
  padding: 2px 10px;
  font-size: 13px;
}
.priceBlock05 .iconWrap .icon._01 {
  background: #f08200;
}
.priceBlock05 .iconWrap .icon._02 {
  background: #009c84;
}
.priceBlock05 ._underline {
  border-bottom: 1px solid #ddd;
  margin-bottom: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .priceBlock05 ._underline {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}
.priceBlock05 .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .priceBlock05 .flexWrap {
    display: block;
  }
}
.priceBlock05 .flexWrap .textBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .priceBlock05 .flexWrap .textBox {
    margin-bottom: 20px;
  }
}
.priceBlock05 .flexWrap .imgBox {
  -webkit-flex-basis: 316px;
  flex-basis: 316px;
  margin-left: 50px;
}
@media only screen and (max-width: 768px) {
  .priceBlock05 .flexWrap .imgBox {
    margin-left: 0px;
  }
}

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

@media only screen and (max-width: 768px) {
  .tbl_scroll {
    width: 100%;
    margin: 0px auto 0px;
    overflow: auto;
  }

  .tbl_scroll:before {
    content: "※表はタッチして横移動できます。";
    color: #333;
    text-align: left;
    display: block;
    font-size: 13px;
  }
}
.orangeBox {
  background: #fcf6ef;
  margin-top: 30px;
  padding: 30px 30px;
}
@media only screen and (max-width: 768px) {
  .orangeBox {
    padding: 20px 20px;
  }
}
.orangeBox .secBox h4 {
  margin-top: 0;
}

.lineBC {
  border: 1px solid #d5d5d5;
  margin-top: 30px;
  padding: 20px 30px;
}
@media only screen and (max-width: 768px) {
  .lineBC {
    margin-bottom: 0px;
    padding: 30px 20px;
  }
}
.lineBC ul {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .lineBC ul {
    display: block;
  }
}
.lineBC ul li {
  width: 50%;
  font-size: 14px;
}
.lineBC ul li:nth-child(1), .lineBC ul li:nth-child(2) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .lineBC ul li {
    width: 100%;
    margin-top: 15px;
  }
  .lineBC ul li:first-child {
    margin-top: 0;
  }
}

.dietBlock01 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .dietBlock01 {
    margin-bottom: 40px;
  }
}
.dietBlock01 .lineB {
  border: 1px solid #d5d5d5;
  margin-bottom: 50px;
  padding: 40px 30px;
}
@media only screen and (max-width: 768px) {
  .dietBlock01 .lineB {
    margin-bottom: 30px;
    padding: 30px 20px;
  }
}
.dietBlock01 .lineB ul {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .dietBlock01 .lineB ul {
    display: block;
  }
}
.dietBlock01 .lineB ul li {
  width: 50%;
  font-size: 14px;
}
.dietBlock01 .lineB ul li:nth-child(1), .dietBlock01 .lineB ul li:nth-child(2) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .dietBlock01 .lineB ul li {
    width: 100%;
    margin-top: 15px;
  }
  .dietBlock01 .lineB ul li:first-child {
    margin-top: 0;
  }
}
.dietBlock01 .imgA {
  margin-bottom: 30px;
}
.dietBlock01 .imgB {
  text-align: center;
  background: #f6f6f6;
  margin-top: 40px;
  margin-bottom: 25px;
  padding: 40px 40px;
}
@media only screen and (max-width: 768px) {
  .dietBlock01 .imgB {
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 10px;
  }
}
.dietBlock01 .ripBox {
  position: relative;
  border: 1px solid #d5d5d5;
  margin-top: 60px;
  margin-bottom: 50px;
  padding: 50px 30px 40px;
}
@media only screen and (max-width: 768px) {
  .dietBlock01 .ripBox {
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 30px 20px 20px;
  }
}
.dietBlock01 .ripBox .tBox {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #f08200;
  color: #fff;
  font-size: 15px;
  padding: 5px 30px;
}
@media only screen and (max-width: 768px) {
  .dietBlock01 .ripBox .tBox {
    font-size: 13px;
    padding: 5px 20px;
  }
}

.dietBlock02 {
  background: #f6f6f6;
}
.dietBlock02 .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap {
    display: block;
    margin-bottom: 0;
  }
}
.dietBlock02 .flexWrap .flexBox {
  background: #fff;
  width: 30%;
  padding: 30px 40px;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap .flexBox {
    width: 100%;
    margin: 10px 0;
    padding: 30px 20px;
  }
}
.dietBlock02 .flexWrap .flexBox dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap .flexBox dl {
    display: block;
  }
}
.dietBlock02 .flexWrap .flexBox dl dt {
  color: #f08200;
  font-size: 30px;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  padding-right: 10px;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap .flexBox dl dt {
    font-size: 20px;
  }
}
.dietBlock02 .flexWrap .flexBox dl dt span {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap .flexBox dl dt span {
    font-size: 18px;
  }
}
.dietBlock02 .flexWrap .flexBox dl dd {
  font-size: 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap .flexBox dl dd {
    font-size: 15px;
  }
}
.dietBlock02 .flexWrap._02 .flexBox:first-child {
  margin-left: 17%;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap._02 .flexBox:first-child {
    margin-left: 0%;
  }
}
.dietBlock02 .flexWrap._02 .flexBox:last-child {
  margin-right: 17%;
}
@media only screen and (max-width: 768px) {
  .dietBlock02 .flexWrap._02 .flexBox:last-child {
    margin-right: 0%;
  }
}

.dietBlock03 .secBox h4 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.dietBlock04 .flexWrap {
  position: relative;
}
.dietBlock04 .flexWrap .textBox {
  position: relative;
  top: 0;
  right: 0;
  z-index: 2;
  background: #fff;
  text-align: left;
  width: 530px;
  min-height: 340px;
  margin-left: 540px;
  padding: 40px 50px 40px 40px;
  line-height: 1.9;
  box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .dietBlock04 .flexWrap .textBox {
    width: 100%;
    margin-left: 0;
    padding: 30px 20px 30px;
  }
}
.dietBlock04 .flexWrap .imgBox {
  position: absolute;
  top: 70px;
  left: 140px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .dietBlock04 .flexWrap .imgBox {
    position: relative;
    top: 0px;
    left: 0px;
  }
}

.dietBlock05 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .dietBlock05 {
    margin-bottom: 40px;
  }
}
.dietBlock05 .flexWrap {
  position: relative;
}
.dietBlock05 .flexWrap .textBox {
  position: relative;
  top: 0;
  right: 0;
  z-index: 2;
  background: #fff;
  text-align: left;
  width: 580px;
  min-height: 340px;
  padding: 40px 20px 40px 20px;
  line-height: 1.9;
  box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .dietBlock05 .flexWrap .textBox {
    width: 100%;
    padding: 30px 20px 30px;
  }
}
.dietBlock05 .flexWrap .imgBox {
  position: absolute;
  top: 70px;
  right: 0px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .dietBlock05 .flexWrap .imgBox {
    position: relative;
    top: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .dietBlock05 .flexWrap .movie iframe {
    width: 100%;
    height: 56vw;
  }
}

.dietBlock06 {
  padding: 40px 0 120px;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .dietBlock06 {
    padding: 40px 0 40px;
  }
}
.dietBlock06 .flexWrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .dietBlock06 .flexWrap {
    display: block;
  }
}
.dietBlock06 .flexWrap .flexBox {
  width: 47%;
  position: relative;
  margin-top: 20px;
  margin-right: 6px;
  margin-left: 7px;
  border-top: 3px solid #f08200;
  background: #fff;
  padding: 30px 30px 50px;
}
@media only screen and (max-width: 768px) {
  .dietBlock06 .flexWrap .flexBox {
    width: 100%;
    margin-top: 20px;
    margin-right: 0px;
    margin-left: 0px;
    padding: 30px 20px 30px;
  }
}
.dietBlock06 .flexWrap .flexBox._b {
  margin-bottom: 30px;
}

.priceBlock01 .engH2 {
  margin-bottom: 50px;
}
.priceBlock01 .engH2 h2 {
  margin-bottom: 20px;
}

.boshu {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .boshu {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.boshu .tabBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0px 40px;
  /* -webkit-box-pack: center; */
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .boshu .tabBtn {
    display: block;
    margin: 0 0px 20px;
  }
}
.boshu .tabBtn li {
  display: inline-block;
  line-height: 1;
  width: 25%;
  margin: 5px 0;
}
@media only screen and (max-width: 768px) {
  .boshu .tabBtn li {
    width: 100%;
    margin: 0 0;
  }
}
.boshu .tabBtn li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 30px 0px;
  border: 1px solid #f08200;
  border-right: none;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .boshu .tabBtn li a {
    font-size: 14px;
    width: 100%;
    padding: 20px 0px;
    border-right: 1px solid #f08200;
    border-bottom: none;
  }
}
.boshu .tabBtn li a.is_active {
  background: #fcf6ef;
  color: #f08200;
  font-weight: bold;
}
.boshu .tabBtn li:nth-child(4) a {
  border-right: 1px solid #f08200;
  border-bottom: 1px solid #f08200;
}
@media only screen and (max-width: 768px) {
  .boshu .tabBtn li:nth-child(4) a {
    border-bottom: none;
  }
}
.boshu .tabBtn li:last-child a {
  border-right: 1px solid #f08200;
  border-bottom: 1px solid #f08200;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .w950 {
    padding: 0;
  }
}
.boshu .workIn .tab-content {
  display: none;
}
.boshu .workIn .tab-content.is_show {
  display: block;
}
.boshu .workIn dl.outer {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn dl.outer {
    display: block;
  }
}
.boshu .workIn dl.outer:nth-child(odd) {
  background: url(../img/bg_dot.gif) repeat 0 0;
}
.boshu .workIn dl.outer > dt {
  width: 220px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 30px 30px;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn dl.outer > dt {
    width: 100%;
    display: block;
    padding: 20px 15px 5px;
  }
}
.boshu .workIn dl.outer > dd {
  width: 720px;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 30px 30px;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn dl.outer > dd {
    width: 100%;
    display: block;
    font-size: 13px;
    padding: 15px 15px 20px;
  }
}
.boshu .workIn dl.outer > dd div {
  margin-top: 20px;
}
.boshu .workIn dl.outer > dd div:first-child {
  margin-top: 0;
}
.boshu .workIn dl.outer > dd ul {
  margin-left: 22px;
  margin-bottom: 15px;
}
.boshu .workIn dl.outer > dd ul.list_ul01 li {
  list-style-type: square;
  margin-top: 5px;
}
.boshu .workIn dl.outer > dd ul.list_ul01 li:first-child {
  margin-top: 0;
}
.boshu .workIn dl.outer > dd ol {
  margin-left: 22px;
  margin-bottom: 15px;
}
.boshu .workIn dl.outer > dd ol.disc li {
  list-style-type: disc;
  margin-top: 5px;
}
.boshu .workIn dl.outer > dd ol.disc li:first-child {
  margin-top: 0;
}
.boshu .workIn dl.outer > dd dt {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}
.boshu .workIn .tab_faq h4 {
  font-size: 24px;
  font-weight: bold;
  color: #0080cc;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .tab_faq h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.boshu .workIn .tab_faq dl dt {
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
  background: #f5f5f5;
  padding: 24px 20px 24px 60px;
  border: 3px solid #f5f5f5;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .tab_faq dl dt {
    padding: 14px 30px 14px 50px;
  }
}
.boshu .workIn .tab_faq dl dt:before {
  content: "";
  width: 17px;
  height: 2px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #000;
}
.boshu .workIn .tab_faq dl dt:after {
  content: "";
  width: 2px;
  height: 17px;
  position: absolute;
  right: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #000;
}
.boshu .workIn .tab_faq dl dt span {
  position: absolute;
  left: 20px;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #313131;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: white;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 19px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .tab_faq dl dt span {
    left: 10px;
    top: 10px;
  }
}
.boshu .workIn .tab_faq dl dd {
  font-size: 15px;
  font-weight: 500;
  padding: 20px 20px 24px 60px;
  border: 3px solid #e5f6fd;
  border-top: none;
  margin-bottom: 50px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .tab_faq dl dd {
    margin-bottom: 30px;
    padding: 10px 20px 14px 50px;
  }
}
.boshu .workIn .tab_faq dl dd span {
  position: absolute;
  left: 20px;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #00a0e9;
  top: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: white;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 19px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .tab_faq dl dd span {
    left: 10px;
    top: 10px;
  }
}
.boshu .workIn .tab_faq dl dd p {
  line-height: inherit;
  letter-spacing: inherit;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .tab_faq dl dd p {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }
}
.boshu .workIn .tab_faq dl dd p.txt_big {
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .boshu .workIn .tab_faq dl dd p.txt_big {
    font-size: 18px;
  }
}

.boshu_customer {
  margin-top: 20px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .boshu_customer {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.boshu_customer .tabBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0px 40px;
  /* -webkit-box-pack: center; */
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .tabBtn {
    display: block;
    margin: 0 0px 20px;
  }
}
.boshu_customer .tabBtn li {
  display: inline-block;
  line-height: 1;
  width: 33.333336%;
  margin: 5px 0;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .tabBtn li {
    width: 100%;
    margin: 0 0;
  }
}
.boshu_customer .tabBtn li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 30px 0px;
  border: 1px solid #f08200;
  border-right: none;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .tabBtn li a {
    font-size: 14px;
    width: 100%;
    padding: 20px 0px;
    border-right: 1px solid #f08200;
    border-bottom: none;
  }
}
.boshu_customer .tabBtn li a.is_active {
  background: #fcf6ef;
  color: #f08200;
  font-weight: bold;
}
.boshu_customer .tabBtn li:nth-child(4) a {
  border-right: 1px solid #f08200;
  border-bottom: 1px solid #f08200;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .tabBtn li:nth-child(4) a {
    border-bottom: none;
  }
}
.boshu_customer .tabBtn li:last-child a {
  border-right: 1px solid #f08200;
  border-bottom: 1px solid #f08200;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .w950 {
    padding: 0;
  }
}
.boshu_customer .workIn .tab-content {
  display: none;
}
.boshu_customer .workIn .tab-content.is_show {
  display: block;
}
.boshu_customer .workIn dl.outer {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn dl.outer {
    display: block;
  }
}
.boshu_customer .workIn dl.outer:nth-child(odd) {
  background: url(../img/bg_dot.gif) repeat 0 0;
}
.boshu_customer .workIn dl.outer > dt {
  width: 220px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 30px 30px;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn dl.outer > dt {
    width: 100%;
    display: block;
    padding: 20px 15px 5px;
  }
}
.boshu_customer .workIn dl.outer > dd {
  width: 720px;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 30px 30px;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn dl.outer > dd {
    width: 100%;
    display: block;
    font-size: 13px;
    padding: 15px 15px 20px;
  }
}
.boshu_customer .workIn dl.outer > dd div {
  margin-top: 20px;
}
.boshu_customer .workIn dl.outer > dd div:first-child {
  margin-top: 0;
}
.boshu_customer .workIn dl.outer > dd ul {
  margin-left: 22px;
  margin-bottom: 15px;
}
.boshu_customer .workIn dl.outer > dd ul.list_ul01 li {
  list-style-type: square;
  margin-top: 5px;
}
.boshu_customer .workIn dl.outer > dd ul.list_ul01 li:first-child {
  margin-top: 0;
}
.boshu_customer .workIn dl.outer > dd ol {
  margin-left: 22px;
  margin-bottom: 15px;
}
.boshu_customer .workIn dl.outer > dd ol.disc li {
  list-style-type: disc;
  margin-top: 5px;
}
.boshu_customer .workIn dl.outer > dd ol.disc li:first-child {
  margin-top: 0;
}
.boshu_customer .workIn dl.outer > dd dt {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}
.boshu_customer .workIn .tab_faq h4 {
  font-size: 24px;
  font-weight: bold;
  color: #0080cc;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .tab_faq h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.boshu_customer .workIn .tab_faq dl dt {
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
  background: #f5f5f5;
  padding: 24px 20px 24px 60px;
  border: 3px solid #f5f5f5;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .tab_faq dl dt {
    padding: 14px 30px 14px 50px;
  }
}
.boshu_customer .workIn .tab_faq dl dt:before {
  content: "";
  width: 17px;
  height: 2px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #000;
}
.boshu_customer .workIn .tab_faq dl dt:after {
  content: "";
  width: 2px;
  height: 17px;
  position: absolute;
  right: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #000;
}
.boshu_customer .workIn .tab_faq dl dt span {
  position: absolute;
  left: 20px;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #313131;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: white;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 19px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .tab_faq dl dt span {
    left: 10px;
    top: 10px;
  }
}
.boshu_customer .workIn .tab_faq dl dd {
  font-size: 15px;
  font-weight: 500;
  padding: 20px 20px 24px 60px;
  border: 3px solid #e5f6fd;
  border-top: none;
  margin-bottom: 50px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .tab_faq dl dd {
    margin-bottom: 30px;
    padding: 10px 20px 14px 50px;
  }
}
.boshu_customer .workIn .tab_faq dl dd span {
  position: absolute;
  left: 20px;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #00a0e9;
  top: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: white;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 19px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .tab_faq dl dd span {
    left: 10px;
    top: 10px;
  }
}
.boshu_customer .workIn .tab_faq dl dd p {
  line-height: inherit;
  letter-spacing: inherit;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .tab_faq dl dd p {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }
}
.boshu_customer .workIn .tab_faq dl dd p.txt_big {
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .boshu_customer .workIn .tab_faq dl dd p.txt_big {
    font-size: 18px;
  }
}

/*=========================================================*/
/*	施工事例*/
/*=========================================================*/
.work ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.work ul li {
  position: relative;
  width: 48%;
  margin-top: 30px;
}
.work ul li:nth-child(1), .work ul li:nth-child(2) {
  margin-top: 0;
}
.work ul li a img {
  width: 100%;
  height: auto;
}

.work ul li:nth-child(1),
.work ul li:nth-child(2) {
  margin-top: 0px;
}

.work ul li:nth-child(odd) {
  margin-left: 0px;
}

.work ul li:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  background: #f08200;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out 0s;
}

.work ul li a {
  line-height: 0;
  display: block;
  position: relative;
  z-index: 2;
  text-decoration: none;
  -webkit-transform: translate3d(0px, 0px, 0);
  transform: translate3d(0px, 0px, 0);
  transition: all 0.2s ease-in-out 0s;
}

.work ul li a:hover {
  -webkit-transform: translate3d(-7px, -7px, 0);
  transform: translate3d(-7px, -7px, 0);
}

.work ul li a dl {
  position: absolute;
  bottom: 41%;
  right: 0;
  left: 0;
  z-index: 4;
  text-align: center;
  padding: 0 20px;
}

.work ul li a dl dt {
  color: #fff;
  font-size: 20px;
  position: relative;
  margin-bottom: 24px;
  line-height: 1.4;
}

.work ul li a dl dt:before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  background: #fff;
  width: 400px;
  height: 1px;
  margin-left: -200px;
}

.work ul li a dl dd {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.work ul li a img {
  position: relative;
  z-index: 2;
  filter: brightness(0.5);
}

.work ul li a {
  position: relative;
}
.work ul li a:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.work ul li a dl {
  z-index: 3;
}
.work ul li a .imgBody {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  transition: .6s;
  opacity: 1;
  z-index: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.work ul li a .imgBody:before {
  content: '';
  display: block;
  padding-top: 67.7%;
}
.work ul li a .imgBody span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: .6s;
  transition: .6s;
  background: url() center no-repeat #e5e5e5;
}

/*=========================================================*/
/*	詳細*/
/*=========================================================*/
.workDetail {
  margin-top: 50px;
}

.workDetail .slider-nav .slick-slide {
  /* width: 200px; */
}

/* main */
.workDetail .slider-for {
  margin-bottom: 20px;
}

.workDetail .slider-for img {
  width: 1000px;
}

/* nav */
.workDetail .slider-nav .slick-slide div {
  margin: 0 5px;
}

.workDetail .slider-nav img {
  width: 170px;
}

.slider-nav .slick-prev, .slider-nav .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  display: block !important;
  z-index: 9;
}

.slider-nav .slick-prev {
  top: 36%;
  transform: rotate(-180deg);
  left: 0;
  background: url(../img/btn_arrow.png) no-repeat center !important;
}

.slider-nav .slick-next {
  top: 50%;
  right: 0;
  background: url(../img/btn_arrow.png) no-repeat center !important;
}

.slider-nav .slick-prev:hover {
  opacity: 1;
  display: block;
  background: url(../img/btn_arrow.png) no-repeat center;
}

/*	item
---------------------------------------------------------------*/
.workDetail .item {
  width: 900px;
  margin: 100px auto 90px;
}

.workDetail .item .infoInner {
  margin-bottom: 50px;
}

.workDetail .item .btn a {
  margin: 0 auto;
}

.workDetail .item .infoInner dl {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .workDetail .item .infoInner dl {
    display: block;
  }
}

.workDetail .item .infoInner dl dt {
  width: 220px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CFCFCF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.workDetail .item .infoInner dl dd {
  display: -webkit-flex;
  display: flex;
  width: 580px;
  -webkit-flex: 1 1 auto;
  /* flex: 1 1 auto; */
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 768px) {
  .workDetail .item .infoInner dl dd {
    font-size: 13px;
  }
}

@media only screen and (max-width: 768px) {
  /*=========================================================*/
  /*	施工事例*/
  /*=========================================================*/
  .work ul li {
    position: relative;
    margin-top: 20px !important;
    width: 100%;
  }

  .work ul li:nth-child(1) {
    margin-top: 0px;
  }

  .work ul li:nth-child(odd) {
    margin-left: 0px;
  }

  .work ul li:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    background: #0a4b7a;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in-out 0s;
  }

  .work ul li a {
    line-height: 0;
    display: block;
    position: relative;
    z-index: 2;
    text-decoration: none;
    -webkit-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
    transition: all 0.2s ease-in-out 0s;
  }

  .work ul li a:hover {
    -webkit-transform: translate3d(-7px, -7px, 0);
    transform: translate3d(-7px, -7px, 0);
  }

  .work ul li a dl {
    position: absolute;
    bottom: 41%;
    right: 0;
    left: 0;
    z-index: 4;
    text-align: center;
    padding: 0 20px;
  }

  .work ul li a dl dt {
    color: #fff;
    font-size: 18px;
    position: relative;
    margin-bottom: 24px;
    line-height: 1.4;
  }

  .work ul li a dl dt:before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0%;
    background: #fff;
    width: 100%;
    height: 1px;
    /* margin-left: -200px; */
  }

  .work ul li a dl dd {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .work ul li a img {
    position: relative;
    z-index: 2;
    filter: brightness(0.5);
  }

  /*=========================================================*/
  /*	詳細*/
  /*=========================================================*/
  .workDetail .slider-nav .slick-slide {
    /* width: 200px; */
  }

  /* main */
  .workDetail .slider-for_sp {
    margin-bottom: 10px;
  }

  .workDetail .slider-for_sp img {
    width: 100%;
  }

  /* nav */
  .workDetail .slider-nav_sp .slick-slide div {
    margin: 0 5px;
  }

  .workDetail .slider-nav_sp img {
    width: 100%;
  }

  .slider-nav_sp .slick-prev, .slider-nav_sp .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    display: block !important;
    z-index: 9;
  }

  .slider-nav_sp .slick-prev {
    top: 170%;
    left: 0;
    background: url(../img/btn_arrow_back.png) no-repeat center !important;
  }

  .slider-nav_sp .slick-next {
    top: 170%;
    right: 0;
    background: url(../img/btn_arrow.png) no-repeat center !important;
  }

  .slider-nav_sp .slick-prev:hover {
    opacity: 1;
    display: block;
    background: url(../img/btn_arrow.png) no-repeat center;
  }

  .slick-dots {
    display: none !important;
  }

  /*	item
  ---------------------------------------------------------------*/
  .workDetail .item {
    width: 100%;
    margin: 80px auto 40px;
  }

  .workDetail .item .infoInner {
    margin-bottom: 30px;
  }

  .workDetail .item .btn a {
    width: 100%;
    /* padding-right: 80px; */
    /* padding-left: 80px; */
  }

  .workDetail .item .infoInner dl {
    width: 100%;
    text-align: left;
  }

  .workDetail .item .infoInner dl dt {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #CFCFCF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
  }

  .workDetail .item .infoInner dl dd {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    letter-spacing: 0.06em;
    font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
  }

  .recruit .info .infoOuter .infoInner dl dd .c01 {
    min-width: 250px;
    padding-right: 20px;
  }
}
.contact {
  /*=========================================================*/
  /*	contact*/
  /*=========================================================*/
  /*	table
  ---------------------------------------------------------------*/
  /* =============================================================  input */
  /* form-table */
}
.contact ._01 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .contact .companyBox {
    margin-bottom: 30px;
  }
}
.contact .privacy {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .contact .privacy {
    margin-top: 40px;
  }
}
.contact .privacy h6 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .contact .privacy h6 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.contact .privacy .scrollK {
  overflow: auto;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  height: 150px;
  font-size: 13px;
  margin-bottom: 1.5em;
  padding: 30px 30px;
  background-color: #ffffff;
  border: 1px #c0c0c0 solid;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .contact .privacy .scrollK {
    width: 100%;
    margin-bottom: 5px;
    padding: 20px 20px;
  }
}
.contact .thanks .secTop {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .contact .thanks .secTop {
    padding: 40px 0;
  }
}
.contact .contactWrap {
  padding: 20px 0 80px;
}
@media only screen and (max-width: 768px) {
  .contact .contactWrap {
    padding: 40px 0;
  }
}
.contact .contact form {
  text-align: left;
}
.contact .contact .privacy {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .contact .contact .privacy {
    margin-top: 40px;
  }
}
.contact .contact .privacy .scrollK {
  overflow: auto;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  height: 150px;
  font-size: 13px;
  margin-bottom: 1.5em;
  padding: 30px 30px;
  background-color: #ffffff;
  border: 1px #c0c0c0 solid;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .contact .contact .privacy .scrollK {
    width: 100%;
    margin-bottom: 5px;
    padding: 20px 20px;
  }
}
.contact .contact .section01 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .contact .contact .section01 {
    margin-bottom: 40px;
  }
}
.contact .contact .contactTop {
  margin-bottom: 30px;
}
.contact .inner.contactBlock {
  margin-bottom: 80px;
}
.contact .contact-area {
  text-align: center;
  padding: 0 0 80px;
}
.contact .contact-area-tel {
  float: none;
  width: 50%;
  margin: auto;
  margin-bottom: 40px;
  padding: 20px 40px;
  background: #f9f9f9;
}
.contact .contact-area-tel p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.contact .contact-area-tel .tel {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
}
.contact .header-tel .tel::before,
.contact .contact-area-tel .tel::before {
  background: url(svg/icon_phone.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: baseline;
  margin: 0 3px 0 0;
  width: 12px;
  height: 12px;
}
.contact .contact-area-tel .time {
  font-size: 12px;
  font-weight: 500;
  border-top: 2px solid;
  margin: 5px 0 0;
  padding: 5px 0 0;
}
.contact .table-1 {
  border-top: 1px solid #e5e5e5;
  width: 100%;
}
.contact .table-1 th,
.contact .table-1 td {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px;
  position: relative;
  vertical-align: middle;
  line-height: 1.4;
  text-align: left;
}
.contact .table-1 td::before {
  content: "";
  margin: auto;
  width: 1px;
  height: 80%;
  height: calc(100% - 20px);
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
}
.contact .table-1 th {
  font-size: 14px;
  font-weight: bold;
}
.contact .table-1 td {
  font-size: 14px;
  font-weight: 500;
}
.contact input[type="text"],
.contact input[type="tel"],
.contact input[type="email"],
.contact input[type="password"],
.contact textarea,
.contact select {
  border-color: #e5e5e5;
  background-color: #f9f9f9;
  border-radius: 4px;
  border-style: solid;
  border-width: 2px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "游ゴシック";
  font-weight: 600;
  vertical-align: baseline;
  padding: 8px 12px;
  transition: all .2s ease-out;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .contact input[type="text"],
  .contact input[type="tel"],
  .contact input[type="email"],
  .contact input[type="password"],
  .contact textarea,
  .contact select {
    width: auto;
  }
}
.contact textarea {
  width: 100%;
}
.contact input[type="text"]:focus,
.contact input[type="tel"]:focus,
.contact input[type="email"]:focus,
.contact input[type="password"]:focus,
.contact textarea:focus,
.contact select:focus {
  background-color: #f5fbfe;
  box-shadow: 0 0 5px 0 rgba(12, 134, 202, 0.3);
  border-color: #3099d3;
  outline: none;
}
.contact input.imeoff {
  ime-mode: disabled;
}
.contact .iw100 {
  max-width: 100px;
}
.contact .iw200 {
  max-width: 200px;
}
.contact .iw300 {
  max-width: 300px;
}
.contact input[type="submit"],
.contact .submit_area input[type="button"] {
  background-color: #232427;
  border-width: 0;
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  margin: 0 10px;
  padding: 15px 80px;
  position: relative;
  transition: all .2s ease-out;
  font-family: "游ゴシック";
}
.contact input[type="submit"]:hover {
  background-color: #ea9b49;
}
.contact input[type="checkbox"] {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #D7DCE1;
  border-radius: 2px;
  cursor: pointer;
}
.contact input[type="submit"][disabled="disabled"] {
  background-color: #eee;
  border-color: #bbb;
  color: #888;
}
.contact input[type="radio"] {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e5e5;
  background: #f9f9f9;
  border-radius: 20px;
  cursor: pointer;
}
.contact input[type="radio"], .contact input[type="checkbox"] {
  vertical-align: middle;
  margin: 0 0.2rem 0 1rem;
}
.contact input[type="radio"]:checked {
  background: #3099d3;
  border-color: #0583c9;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}
.contact label {
  display: inline-block;
  cursor: pointer;
}
.contact ::-webkit-input-placeholder {
  font-weight: normal;
  color: #999;
  font-size: 14px;
}
.contact :-ms-input-placeholder {
  font-weight: normal;
  color: #999;
  font-size: 14px;
}
.contact ::-moz-placeholder {
  font-weight: normal;
  color: #999;
  font-size: 14px;
}
.contact .form-table th {
  position: relative;
  width: 230px;
}
@media only screen and (max-width: 768px) {
  .contact .form-table th {
    width: auto;
  }
}
.contact .form-table th::after {
  background: #eee;
  content: "任意";
  font-size: 12px;
  line-height: 1;
  margin-top: 0px;
  padding: 5px 10px;
  position: absolute;
  border-radius: 10px;
  right: 20px;
}
.contact .form-table th.req::after {
  background: #f74850;
  content: "必須";
  color: #fff;
}
.contact .submit-area {
  text-align: center;
  padding: 30px 0 0;
}
.contact .error {
  color: #f74850;
  display: inline-block;
  font-size: 1.4rem;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  .contact {
    /*=========================================================*/
    /*	CONTACT*/
    /*=========================================================*/
    /*	table
    ---------------------------------------------------------------*/
    /* =============================================================  input */
    /* form-table */
  }
  .contact .inner.contactBlock {
    margin-bottom: 40px;
  }
  .contact .contact-area {
    text-align: center;
    padding: 0 0 80px;
  }
  .contact .contact-area-tel {
    width: 100%;
    float: none;
    margin: auto;
    margin-bottom: 20px;
    padding: 20px 20px;
    background: #f9f9f9;
  }
  .contact .contact-area-tel p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .contact .contact-area-tel .tel {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .contact .header-tel .tel::before,
  .contact .contact-area-tel .tel::before {
    background: url(svg/icon_phone.svg) no-repeat center center/contain;
    content: "";
    display: inline-block;
    vertical-align: baseline;
    margin: 0 3px 0 0;
    width: 12px;
    height: 12px;
  }
  .contact .contact-area-tel .time {
    font-size: 12px;
    font-weight: 500;
    border-top: 2px solid;
    margin: 5px 0 0;
    padding: 5px 0 0;
  }
  .contact .table-1 {
    border-top: 1px solid #e5e5e5;
    width: 100%;
  }
  .contact .table-1 th,
  .contact .table-1 td {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
    position: relative;
    vertical-align: middle;
    line-height: 1.4;
    display: block;
    width: 100%;
  }
  .contact .table-1 th {
    font-size: 14px;
    font-weight: bold;
  }
  .contact .table-1 td {
    font-size: 14px;
    font-weight: 500;
  }
  .contact .table-1 td::before {
    display: none;
  }
  .contact input[type="text"],
  .contact input[type="tel"],
  .contact input[type="email"],
  .contact input[type="password"],
  .contact textarea,
  .contact select {
    border-color: #e5e5e5;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-style: solid;
    border-width: 2px;
    box-sizing: border-box;
    font-size: 1.3rem;
    font-family: "游ゴシック";
    font-weight: 600;
    vertical-align: baseline;
    padding: 8px 12px;
    transition: all .2s ease-out;
    width: 100%;
  }
  .contact textarea {
    width: 100%;
  }
  .contact input[type="text"]:focus,
  .contact input[type="tel"]:focus,
  .contact input[type="email"]:focus,
  .contact input[type="password"]:focus,
  .contact textarea:focus,
  .contact select:focus {
    background-color: #f5fbfe;
    box-shadow: 0 0 5px 0 rgba(12, 134, 202, 0.3);
    border-color: #3099d3;
    outline: none;
  }
  .contact input.imeoff {
    ime-mode: disabled;
  }
  .contact .iw100 {
    max-width: 100px;
  }
  .contact .iw200 {
    max-width: 200px;
  }
  .contact .iw300 {
    max-width: 300px;
  }
  .contact input[type="submit"],
  .contact .submit_area input[type="button"] {
    -webkit-appearance: none;
    border-width: 0;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
    margin: 0 10px;
    padding: 20px 80px;
    position: relative;
    transition: all .2s ease-out;
    font-family: "游ゴシック";
  }
  .contact input[type="checkbox"] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #D7DCE1;
    border-radius: 2px;
    cursor: pointer;
  }
  .contact input[type="submit"][disabled="disabled"] {
    background-color: #eee;
    border-color: #bbb;
    color: #888;
  }
  .contact input[type="radio"] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    background: #f9f9f9;
    border-radius: 20px;
    cursor: pointer;
  }
  .contact input[type="radio"], .contact input[type="checkbox"] {
    vertical-align: middle;
    margin: 0 0.2rem 0 1rem;
  }
  .contact input[type="radio"]:checked {
    background: #3099d3;
    border-color: #0583c9;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
  }
  .contact label {
    display: inline-block;
    cursor: pointer;
  }
  .contact ::-webkit-input-placeholder {
    font-weight: normal;
    color: #999;
    font-size: 14px;
  }
  .contact :-ms-input-placeholder {
    font-weight: normal;
    color: #999;
    font-size: 14px;
  }
  .contact ::-moz-placeholder {
    font-weight: normal;
    color: #999;
    font-size: 14px;
  }
  .contact .form-table th {
    position: relative;
  }
  .contact .form-table th::after {
    background: #eee;
    content: "任意";
    font-size: 12px;
    line-height: 1;
    margin-top: 3px;
    padding: 5px 10px;
    position: absolute;
    border-radius: 10px;
    right: 20px;
  }
  .contact .form-table th.req::after {
    background: #f74850;
    content: "必須";
    color: #fff;
  }
  .contact .submit-area {
    text-align: center;
    padding: 30px 0 0;
  }
  .contact .error {
    color: #fff;
    display: inline-block;
    font-size: 1.4rem;
    padding: 0 10px;
  }
}

/*=========================================================*/
/*	新着情報*/
/*=========================================================*/
/*	NEWS
---------------------------------------------------------------*/
.news {
  width: 100%;
  position: relative;
}

.news .newsOuter {
  position: relative;
  margin: 0 auto 0px;
}

.newsList {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .newsList {
    margin-bottom: 40px;
  }
}

.news .newsOuter .title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter .title {
    margin-bottom: 15px;
  }
}

.news .newsOuter .title .eng02 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.24em;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter .title .eng02 {
    font-size: 24px;
    letter-spacing: 0.14em;
  }
}

.news .newsOuter ul {
  text-align: left;
  margin-bottom: 50px;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul {
    margin-bottom: 20px;
  }
}

.news .newsOuter ul li:first-child {
  border-top: 1px dashed #b4b4b4;
}

.news .newsOuter ul li {
  border-bottom: 1px dashed #b4b4b4;
  padding: 22px 30px 18px;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li {
    padding: 15px 0%;
  }
}

.news .newsOuter ul li dl dt {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.06em;
  vertical-align: middle;
  display: inline-block;
  padding-right: 25px;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dt {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.news .newsOuter ul li dl dd {
  width: 780px;
  vertical-align: middle;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dd {
    width: 100%;
  }
}

.news .newsOuter ul li dl dd a {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dd a {
    font-size: 14px;
  }
}

.news .newsOuter ul li dl dd a:hover {
  text-decoration: underline;
}

/*	詳細
---------------------------------------------------------------*/
.nDetail {
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .nDetail {
    padding-bottom: 50px;
  }
}
.nDetail .detailBox a {
  text-decoration: underline;
  color: #009c84;
}
.nDetail .detailBox a:hover {
  text-decoration: none;
}

.nDetail .newsInnerTop {
  margin: 0px auto 0px !important;
}

.newsDetail .detailBox {
  text-align: left;
  min-height: 150px;
}
.newsDetail .detailBox ul {
  margin-left: 20px;
}
.newsDetail .detailBox ul li {
  list-style-type: disc;
  margin-top: 10px;
}
.newsDetail .detailBox ol {
  margin-left: 20px;
}
.newsDetail .detailBox ol li {
  list-style-type: decimal;
  margin-top: 10px;
}
.newsDetail .detailBox h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.4;
  border-bottom: 2px solid #232427;
  background: none;
  color: #333;
  height: auto;
  text-align: left;
  display: block;
}
.newsDetail .detailBox h2:before {
  display: none;
}
@media only screen and (max-width: 768px) {
  .newsDetail .detailBox h2 {
    font-size: 16px;
  }
}

.newsDetail h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.4;
  border-bottom: 2px solid #232427;
}
@media only screen and (max-width: 768px) {
  .newsDetail h3 {
    font-size: 16px;
  }
}

.newsDetail .days {
  text-align: left;
  margin-bottom: 10px;
  color: #888;
  font-size: 13px;
}

.newsDetail ul {
  margin-left: 20px;
}

.newsDetail ul li {
  text-align: left;
  list-style-type: disc;
}

.newsDetail .detailBox {
  margin-bottom: 50px;
}

.newsDetail .detailBox h3 {
  margin: 20px 0 10px 0;
}

.newsDetail .detailBox dt,
.newsDetail .detailBox dd,
.newsDetail .detailBox p,
.newsDetail .detailBox li {
  color: #333;
  font-size: 14px;
}

.btn_newsList a {
  margin-top: 10px;
  display: inline-block;
  background-color: #232427;
  vertical-align: top;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 15px 100px;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media only screen and (max-width: 768px) {
  .btn_newsList a {
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
    font-size: 14px;
  }
}
.btn_newsList a:hover {
  opacity: 0.8;
}

.newsDetail .btn a {
  width: auto;
  display: inline-block;
  padding-right: 100px;
  padding-left: 100px;
}
@media only screen and (max-width: 768px) {
  .newsDetail .btn a {
    padding-right: 0px;
    padding-left: 0px;
  }
}

.companyBoxS {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .companyBoxS {
    margin-top: 40px;
  }
}

.recruitMiddleA {
  margin-top: 80px;
  margin-bottom: 150px;
}
@media only screen and (max-width: 768px) {
  .recruitMiddleA {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

.recruitMiddle {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .recruitMiddle {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.recruitMiddle .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .recruitMiddle .flexWrap {
    display: block;
  }
}
.recruitMiddle .flexWrap .flexBox {
  background-color: #fbf7ee;
  width: 46%;
}
@media only screen and (max-width: 768px) {
  .recruitMiddle .flexWrap .flexBox {
    width: 100%;
  }
}
.recruitMiddle .flexWrap .flexBox .ttlA {
  background: #f08200;
  color: #fff;
  padding: 10px 30px;
  font-size: 15px;
  display: inline-block;
  min-width: 250px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .recruitMiddle .flexWrap .flexBox .ttlA {
    width: 100%;
    min-width: auto;
  }
}
.recruitMiddle .flexWrap .flexBox .dDetail {
  padding: 30px 30px 40px;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .recruitMiddle .flexWrap .flexBox .dDetail {
    padding: 20px 20px 30px;
    font-size: 14px;
  }
}
.recruitMiddle .flexWrap .flexBox .dDetail .tellRecruit {
  background: #fff;
  margin: 10px 0;
  padding: 5px;
  font-weight: bold;
  text-align: center;
}
.recruitMiddle .flexWrap .flexBox .dDetail .listOut {
  text-align: center;
}
.recruitMiddle .flexWrap .flexBox .dDetail .listOut .list {
  background: url(../img/arrow.png) center bottom 10px/11px 8px no-repeat;
  padding-bottom: 30px;
}
.recruitMiddle .flexWrap .flexBox .dDetail .listOut .list._last {
  background: none;
  padding-bottom: 0px;
}
.recruitMiddle .flexWrap .flexBox .dDetail .listOut .list .box {
  border: 1px solid #f08200;
  padding: 5px 10px;
}
.recruitMiddle ol {
  margin-left: 20px;
}
.recruitMiddle ol li {
  list-style-type: decimal;
  margin-bottom: 10px;
}
.recruitMiddle ol li:last-child {
  margin-bottom: 0;
}

.contactTopA .have {
  border: 1px solid #ddd;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .contactTopA .have {
    padding: 20px;
  }
}
.contactTopA .have dl dt {
  color: #f08200;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .contactTopA .have dl dt {
    font-size: 15px;
  }
}
.contactTopA .have dl dd {
  font-size: 15px;
  line-height: 1.85;
}
@media only screen and (max-width: 768px) {
  .contactTopA .have dl dd {
    font-size: 14px;
  }
}
.contactTopA .have dl dd ul {
  margin-left: 25px;
}
.contactTopA .have dl dd ul li {
  list-style-type: disc;
}

.contactTopB {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .contactTopB {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.contactTopB .have {
  border: 1px solid #ddd;
  background: #f9f9f9;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .contactTopB .have {
    padding: 20px;
  }
}
.contactTopB .have dl dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .contactTopB .have dl dt {
    font-size: 15px;
  }
}
.contactTopB .have dl dd {
  font-size: 15px;
  line-height: 1.85;
}
@media only screen and (max-width: 768px) {
  .contactTopB .have dl dd {
    font-size: 14px;
  }
}
.contactTopB .have dl dd ul {
  margin-left: 25px;
}
.contactTopB .have dl dd ul li {
  list-style-type: disc;
}

.eventBlock03 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .eventBlock03 {
    margin-bottom: 40px;
  }
}

.imgBoxABC {
  text-align: center;
  background: #eee;
  margin-bottom: 40px;
  padding: 40px 40px;
}
@media only screen and (max-width: 768px) {
  .imgBoxABC {
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 10px 10px;
  }
}

.eventTbl {
  width: 1000px;
  margin: 30px auto 0;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #FFF;
  border-left: solid 1px #DDD;
  border-bottom: solid 1px #DDD;
  line-height: 1.8em;
}
.eventTbl th, .eventTbl td {
  padding: 10px 10px;
  font-size: 13px;
  border-collapse: collapse;
}
.eventTbl thead th {
  border-right: solid 1px #DDD;
  background: #f3fcff;
  background-color: #f08200 !important;
  color: #FFF;
  font-weight: normal;
  padding: 14px;
  font-size: 13px;
  text-align: center;
}
.eventTbl tbody tr:nth-child(odd) {
  background-color: #f9f9f9 !important;
}
.eventTbl tbody th, .eventTbl tbody td {
  border-right: solid 1px #DDD;
  line-height: 1.80;
}
.eventTbl tbody td {
  border-right: solid 1px #DDD;
  text-align: left;
  padding: 30px 30px 30px !important;
  vertical-align: top;
}
.eventTbl tbody td dl.a10 {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.eventTbl tbody td dl.a10 dt {
  -webkit-flex-basis: 80px;
  flex-basis: 80px;
  margin-bottom: 0;
}
.eventTbl tbody td dl.a10 dd {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}
.eventTbl tbody td .waku {
  background-color: #fcf6ef;
  margin-top: 20px;
  margin-left: 80px;
  padding: 10px 20px;
}
.eventTbl tbody td .waku dl {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.eventTbl tbody td .waku dl dt {
  -webkit-flex-basis: 60px;
  flex-basis: 60px;
  margin-bottom: 0;
  font-weight: bold;
}
.eventTbl tbody td .waku dl dd {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
}

.secBox ._00 h4 {
  margin-top: 0;
}
.secBox .tb_course {
  width: 100%;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .secBox .tb_course {
    width: 820px;
  }
}
.secBox .tb_course tbody th, .secBox .tb_course tbody td {
  padding: 10px 15px;
  font-size: 14px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .secBox .tb_course tbody th, .secBox .tb_course tbody td {
    font-size: 13px;
  }
}
.secBox .tb_course tbody th {
  background: #fcf6ef;
  text-align: center;
}

.secBox h2 {
  margin-bottom: 80px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .secBox h2 {
    margin-bottom: 50px;
  }
}
.secBox h2:before {
  width: 2px;
  height: 50px;
  margin: 0 auto 25px;
  content: '';
  display: block;
  background-color: #009c84;
}
.secBox h2 strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #009c84;
}
@media only screen and (max-width: 768px) {
  .secBox h2 strong {
    font-size: 22px;
    letter-spacing: 0.05em;
  }
}
.secBox h2 span {
  display: block;
  margin: 13px 0 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #009c84;
}
@media only screen and (max-width: 768px) {
  .secBox h2 span {
    font-size: 14px;
  }
}
.secBox h3 {
  color: #333;
  border-bottom: 1px dotted #f08200;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .secBox h3 {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
.secBox h4 {
  border-left: 4px solid #f08200;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 12px;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .secBox h4 {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
.secBox ul li {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.secBox p {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.secBox ul.list li {
  position: relative;
  margin-top: 10px;
  padding: 3px 0 3px 15px;
}
.secBox ul.list li:first-child {
  margin-top: 0;
}
.secBox ul.list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background: #009c84;
}
.secBox dl.desk {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .secBox dl.desk {
    display: block;
    font-size: 14px;
  }
}
.secBox dl.desk dt {
  -webkit-flex-basis: 250px;
  flex-basis: 250px;
  margin-bottom: 0;
  padding: 15px 10px;
}
@media only screen and (max-width: 768px) {
  .secBox dl.desk dt {
    background: #d6efea;
  }
}
.secBox dl.desk dd {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 15px 10px;
}
.secBox .box {
  margin-bottom: 20px;
}
.secBox .box dl {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .secBox .box dl {
    display: block;
    font-size: 14px;
  }
}
.secBox .box dl dt {
  background: #fff9ec;
  -webkit-flex-basis: 250px;
  flex-basis: 250px;
  margin-bottom: 0;
  padding: 20px;
  border-right: 1px solid #ddd;
}
.secBox .box dl dd {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 20px;
  border-right: 1px solid #ddd;
}
.secBox .box dl.last dt {
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  .secBox .box dl.last dt {
    border-bottom: none;
  }
}
.secBox .box dl.last dd {
  border-bottom: 1px solid #ddd;
}

.heading1 {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .heading1 {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.heading1:before {
  width: 2px;
  height: 50px;
  margin: 0 auto 25px;
  content: '';
  display: block;
  background-color: #f08200;
}
.heading1 strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #f08200;
}
@media only screen and (max-width: 768px) {
  .heading1 strong {
    font-size: 22px;
    letter-spacing: 0.05em;
  }
}
.heading1 span {
  display: block;
  margin: 13px 0 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f08200;
}
@media only screen and (max-width: 768px) {
  .heading1 span {
    font-size: 14px;
  }
}

.specialTitle {
  width: 100%;
  background-color: #f1f1f1;
  background: url(../img/bg_left.jpg) no-repeat center left;
  text-align: center;
}
.specialTitle .speTop {
  background: url(../img/bg_right.jpg) no-repeat center right;
}
.specialTitle .speTop .speBottom {
  padding: 100px 0;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .specialTitle .speTop .speBottom {
    padding: 50px 0;
    font-size: 19px;
  }
}

.btnLeftline a {
  display: block;
  position: relative;
  background: #fff6f2;
  font-size: 14px;
  min-width: 300px;
  text-align: center;
}
.btnLeftline a:before {
  content: '';
  width: 25px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #f08200;
  transition: all 0.35s;
}
.btnLeftline a span {
  display: inline-block;
  padding: 20px 50px;
}
.btnLeftline a:hover:before {
  width: 40px;
}

.btnBox .btnOrange a {
  display: inline-block;
  border-bottom: 2px solid #f08200;
  background: #fcf6ef;
  font-size: 14px;
  min-width: 300px;
  padding: 20px 40px;
}

.ttlBoxX {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .ttlBoxX {
    margin-bottom: 30px;
  }
}
.ttlBoxX h2 {
  color: #f08200;
  font-size: 38px;
  margin-bottom: 15px;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .ttlBoxX h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.ttlBoxX .sub {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .ttlBoxX .sub {
    font-size: 14px;
  }
}

.bgImg_facility {
  background: url(../img/bg_facility.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .bgImg_facility {
    background-attachment: inherit;
    margin-bottom: 0px;
    padding: 50px 0;
  }
}
.bgImg_facility .txtVihG {
  color: #fff;
  font-size: 60px;
  font-family: work-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .bgImg_facility .txtVihG {
    font-size: 18px;
  }
}

.titleDDL {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 70px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .titleDDL {
    display: block;
    margin-top: 0px;
  }
}
.titleDDL .ttlA {
  position: relative;
  -webkit-flex-basis: 200px;
  flex-basis: 200px;
  margin-right: 40px;
  margin-bottom: 0;
  padding-right: 40px;
}
@media only screen and (max-width: 768px) {
  .titleDDL .ttlA {
    margin-right: 0px;
    padding-right: 0px;
    border-bottom: 2px solid #f08200;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.titleDDL .ttlA:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: #f08200;
}
@media only screen and (max-width: 768px) {
  .titleDDL .ttlA:before {
    display: none;
  }
}
.titleDDL .ttlA dl dt {
  font-size: 36px;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .titleDDL .ttlA dl dt {
    font-size: 28px;
  }
}
.titleDDL .ttlA dl dd {
  font-size: 22px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .titleDDL .ttlA dl dd {
    font-size: 18px;
  }
}
.titleDDL .ttlText {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

/*=========================================================*/
/*	TOP*/
/*=========================================================*/
/*=========================================================*/
/*	mainvisual*/
/*=========================================================*/
#background {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 860px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #background {
    min-height: 200px;
    height: calc(100vh - 70px);
  }
}
#background .textOuhkt {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate3d(50px, -50%, 0);
  transform: translate3d(50px, -50%, 0);
  z-index: 1;
  transition: all .8s;
}
@media only screen and (max-width: 768px) {
  #background .textOuhkt {
    top: 30%;
    right: 0;
    left: 0%;
    transform: translate3d(0%, -50%, 0);
    margin: 0 20px;
  }
}
#background .textOuhkt.moving {
  opacity: 1;
  -webkit-transform: translate3d(0%, -50%, 0);
  transform: translate3d(0%, -50%, 0);
}
@media only screen and (max-width: 768px) {
  #background .textOuhkt.moving {
    top: 30%;
    right: 0;
    transform: translate3d(-10%, -50%, 0);
  }
}
#background .bannerOuter {
  position: absolute;
  bottom: 30px;
  right: 30px;
  -webkit-transform: translate3d(50px, 0%, 0);
  transform: translate3d(50px, 0%, 0);
  z-index: 1;
  opacity: 0;
  transition: all .8s;
}
@media only screen and (max-width: 768px) {
  #background .bannerOuter {
    top: auto;
    right: 0;
    transform: translate3d(0%, 0%, 0);
  }
  #background .bannerOuter img {
    max-width: 200px;
  }
}
#background .bannerOuter.moving {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
}
@media only screen and (max-width: 768px) {
  #background .bannerOuter.moving {
    top: auto;
    right: 0;
    transform: translate3d(0%, 0%, 0);
  }
}
#background .bannerOuter .centerLogo {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #background .bannerOuter .centerLogo {
    width: auto;
    margin-right: 20px;
  }
}
#background .bannerOuter .centerLogo .c_Btn a {
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  padding: 10px 120px;
}
@media only screen and (max-width: 768px) {
  #background .bannerOuter .centerLogo .c_Btn a {
    min-width: 250px;
    padding: 10px 20px;
  }
}
#background .bannerOuter .centerLogo .c_Btn a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 6px;
  height: 6px;
  margin-top: -5px;
  border-top: 3px solid #202020;
  border-right: 3px solid #202020;
  -webkit-transform: scaleX(0.8) rotate(45deg);
  -ms-transform: scaleX(0.8) rotate(45deg);
  -o-transform: scaleX(0.8) rotate(45deg);
  transform: scaleX(0.8) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
#background #bgSlideTop {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#background #bgSlideTop .main_action {
  width: 100%;
}
#background #bgSlideTop .main_action._01 {
  background: url(../img/mainvisual01.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action._01 {
    background: url(../img/mainvisual01.jpg) no-repeat center center;
    background-size: cover;
  }
}
#background #bgSlideTop .main_action._02 {
  background: url(../img/mainvisual02.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action._02 {
    background: url(../img/mainvisual02.jpg) no-repeat center center;
    background-size: cover;
  }
}
#background #bgSlideTop .main_action._03 {
  background: url(../img/mainvisual03.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action._03 {
    background: url(../img/mainvisual03.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action {
    height: 100%;
  }
}
@media only screen and (max-width: 380px) {
  #background #bgSlideTop .main_action {
    height: 100%;
  }
}
#background .kv_scroll {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  bottom: 0%;
  z-index: 100;
  transform: translate3d(-50%, 0, 0);
}
@media only screen and (max-width: 768px) {
  #background .kv_scroll {
    display: none;
  }
}
#background .kv_scroll a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  background: #f08200;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#background .kv_scroll a:before, #background .kv_scroll a:after {
  position: absolute;
  content: "";
  vertical-align: middle;
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#background .kv_scroll a:before {
  width: 4px;
  height: 28px;
  top: 30px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  background: #000;
}
#background .kv_scroll a:after {
  width: 16px;
  height: 16px;
  top: 36px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
#background .kv_scroll a ._text {
  font-size: 14px;
  display: block;
  position: absolute;
  top: 70px;
  right: auto;
  bottom: auto;
  left: auto;
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: work-sans, sans-serif;
  font-weight: 500;
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#background .kv_scroll a:hover {
  background: #333;
}
#background .kv_scroll a:hover:before {
  background: #f08200;
}
#background .kv_scroll a:hover:after {
  border-top: 4px solid #f08200;
  border-right: 4px solid #f08200;
}
#background .kv_scroll a:hover ._text {
  color: #f08200;
}

#textAnimation div.txt .initial {
  display: inline;
  font-size: 10rem;
  color: #2281f7;
}
@media only screen and (max-width: 768px) {
  #textAnimation div.txt .initial {
    font-size: 11vw;
  }
}

#textAnimation div.txt .plus {
  display: inline;
  color: #ff3c3c;
}

#textAnimation div.txt span {
  opacity: 0;
  position: relative;
  display: inline-block;
  transform: translate3d(30px, 0, 0);
  opacity: 0;
  font-variant-ligatures: none;
  font-size: 6rem;
  color: #fff;
  font-family: work-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  #textAnimation div.txt span {
    font-size: 8vw;
  }
}

#textAnimation span.b {
  color: #00aeff;
}

#textAnimation .disc {
  margin-top: 20px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #textAnimation .disc {
    margin-top: 20px;
  }
}

#textAnimation p {
  margin-top: 10px;
  color: #fff;
  text-align: left;
  font-size: 2.2em;
  font-weight: 400;
  letter-spacing: 0.16em;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  #textAnimation p {
    margin-top: 0;
    font-size: 14px;
  }
}

#textAnimation p .text_on {
  opacity: 0;
}

#textAnimation p .strip_anim {
  position: absolute;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translate(0%, 0);
}

#textAnimation p.active .text_on {
  animation: 1.2s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s forwards OPACITY;
}

#textAnimation p.active .strip_anim {
  animation: 1.6s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s forwards STRIPE;
}

@keyframes OPACITY {
  0% {
    opacity: 0;
  }
  22% {
    opacity: 0;
  }
  23% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes STRIPE {
  0% {
    transform: translate(0%, 0);
  }
  90% {
    transform: translate(215%, 0);
  }
  100% {
    transform: translate(215%, 0);
  }
}
.newsTop {
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  border-bottom: 1px solid #d1d1d1;
}
@media only screen and (max-width: 768px) {
  .newsTop {
    display: block;
  }
}
.newsTop .newsTTT {
  margin-left: 100px;
  padding: 55px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .newsTop .newsTTT {
    margin-left: 5vw;
    padding: 30px 0;
  }
}
.newsTop .newsTTT .newsInner02 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .newsTop .newsTTT .newsInner02 {
    display: block;
  }
}
.newsTop .newsTTT .newsCategory {
  display: table;
  color: #fff;
  font-size: 12px;
  background: #333333;
  width: 130px;
  margin-right: 30px;
  padding: 5px 10px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .newsTop .newsTTT .newsCategory {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.newsTop .newsTTT dl {
  display: flex;
}
.newsTop .newsTTT dl dt {
  margin-right: 20px;
  color: #6e6e6e;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.newsTop .newsTTT dl dd {
  color: #3c3c3c;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.newsTop .homeBtn {
  position: relative;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .newsTop .homeBtn {
    display: block;
  }
}
.newsTop .homeBtn .divBtn {
  position: relative;
  z-index: 1;
  right: 0;
  bottom: 0;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .newsTop .homeBtn .divBtn {
    position: relative;
  }
}
.newsTop .homeBtn .divBtn a {
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .newsTop .homeBtn .divBtn a {
    height: 90px;
  }
}
.newsTop .homeBtn .divBtn .btnIn {
  margin-left: 80px;
}
@media only screen and (max-width: 768px) {
  .newsTop .homeBtn .divBtn .btnIn {
    margin-left: 30px;
  }
}
.newsTop .homeBtn .divBtn .btnIn dl {
  text-align: center;
}
.newsTop .homeBtn .divBtn .btnIn dl dt {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .newsTop .homeBtn .divBtn .btnIn dl dt {
    font-size: 18px;
    text-align: left;
  }
}
.newsTop .homeBtn .divBtn .btnIn dl dd {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .newsTop .homeBtn .divBtn .btnIn dl dd {
    font-size: 18px;
  }
}

.medicalFontWrap .FontIn {
  position: relative;
  position: relative;
  width: 100%;
  height: 660px;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn {
    height: auto;
  }
}
.medicalFontWrap .FontIn .textOn {
  position: relative;
  z-index: 1;
}
.medicalFontWrap .FontIn .textOn .onTextTitle {
  padding-top: 100px;
  padding-left: 80px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .textOn .onTextTitle {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 40px;
  }
}
.medicalFontWrap .FontIn .textOn .onTextTitle dl dt {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .textOn .onTextTitle dl dt {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.medicalFontWrap .FontIn .textOn .onTextTitle dl dd {
  font-size: 100px;
  font-family: work-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 1;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .textOn .onTextTitle dl dd {
    font-size: 40px;
  }
}
.medicalFontWrap .FontIn .textOn .onTextUnder {
  width: 38%;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .textOn .onTextUnder {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.medicalFontWrap .FontIn .textOn .onTextUnder dl dt {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .textOn .onTextUnder dl dt {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.medicalFontWrap .FontIn .textOn .onTextUnder dl dd {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .textOn .onTextUnder dl dd {
    font-size: 14px;
    margin-bottom: 26px;
  }
}
.medicalFontWrap .FontIn .imgBack {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 60%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .imgBack {
    position: relative;
    width: 100%;
  }
}
.medicalFontWrap .FontIn .imgBack .animationImg {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .imgBack .animationImg {
    width: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
.medicalFontWrap .FontIn .imgBack .animationImg:before {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #eee;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .imgBack .animationImg:before {
    display: none;
  }
}
.medicalFontWrap .FontIn .imgBack .animationImg .imageOuter {
  z-index: 2;
  overflow: hidden;
  transition: all 0.5s ease-out 0.5s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .medicalFontWrap .FontIn .imgBack .animationImg .imageOuter {
    width: 100%;
  }
}
.medicalFontWrap .FontIn .imgBack.moving .animationImg:before {
  animation: 1.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s forwards STRIPEIMG;
}

@keyframes STRIPEIMG {
  0% {
    transform: translate(0%, 0);
  }
  90% {
    transform: translate(150%, 0);
  }
  100% {
    transform: translate(150%, 0);
  }
}
.jpH2 h2 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .jpH2 h2 {
    font-size: 18px;
  }
}

.recomendWrap {
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  .recomendWrap {
    padding: 60px 0;
  }
}
.recomendWrap .jpH2 {
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .recomendWrap .jpH2 {
    margin-bottom: 40px;
  }
}
.recomendWrap .backgroundBox ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .recomendWrap .backgroundBox ul {
    display: block;
    margin-bottom: 30px;
  }
}
.recomendWrap .backgroundBox ul li {
  width: 25%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .recomendWrap .backgroundBox ul li {
    width: 100%;
    margin-bottom: 60px;
  }
  .recomendWrap .backgroundBox ul li:last-child {
    margin-bottom: 0;
  }
  .recomendWrap .backgroundBox ul li img {
    width: 50px;
  }
}
.recomendWrap .backgroundBox ul li .imgBody .iconImg {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .recomendWrap .backgroundBox ul li .imgBody .iconImg {
    margin-bottom: 20px;
  }
}
.recomendWrap .backgroundBox ul li .imgBody .addressTxt dl dt {
  font-size: 30px;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}
.recomendWrap .backgroundBox ul li .imgBody .addressTxt dl dd {
  font-size: 15px;
  font-weight: 400;
}

.mainTopics ul {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul {
    display: block;
  }
}
.mainTopics ul > li {
  width: 33.33333%;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li {
    width: 100%;
  }
}
.mainTopics ul > li .aaa {
  display: block;
}
.mainTopics ul > li .aaa .inBox {
  position: relative;
  overflow: hidden;
  height: 540px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox {
    padding-top: 12%;
    padding-bottom: 12%;
    height: auto;
  }
}
.mainTopics ul > li .aaa .inBox:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  -webkit-transition: -webkit-transform .5s;
  -o-transition: -o-transform .5s;
  transition: transform .5s;
  transform: scale(1.01);
}
.mainTopics ul > li .aaa .inBox dl {
  color: #fff;
  text-align: center;
}
.mainTopics ul > li .aaa .inBox dl dt {
  position: relative;
  font-size: 28px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox dl dt {
    font-size: 24px;
    margin-bottom: 1em;
    padding-bottom: 0.8em;
  }
}
.mainTopics ul > li .aaa .inBox dl dt:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #bd9e2c;
  width: 34px;
  height: 1px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.mainTopics ul > li .aaa .inBox dl dd {
  position: relative;
  font-size: 15px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox dl dd {
    font-size: 12px;
  }
}
.mainTopics ul > li .aaa .inBox .ininin {
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox .ininin {
    opacity: 0;
    display: none;
  }
}
.mainTopics ul > li .aaa .inBox .onBox {
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox .onBox {
    position: relative;
    padding: 0 20px;
  }
}
.mainTopics ul > li .aaa .inBox .onBox .in01 {
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox .onBox .in01 {
    opacity: 1;
  }
}
.mainTopics ul > li .aaa .inBox .onBox .onTitle {
  text-align: center;
  position: relative;
  font-size: 20px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox .onBox .onTitle {
    font-size: 17px;
    margin-bottom: 1em;
    padding-bottom: 0.8em;
  }
}
.mainTopics ul > li .aaa .inBox .onBox .onTitle:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #bd9e2c;
  width: 34px;
  height: 1px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.mainTopics ul > li .aaa .inBox .onBox ol {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}
.mainTopics ul > li .aaa .inBox .onBox ol li {
  text-align: left;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .mainTopics ul > li .aaa .inBox .onBox ol li {
    font-size: 13px;
  }
}
.mainTopics ul > li .aaa .inBox .onBox ol li:first-child {
  margin-top: 0;
}
.mainTopics ul > li .aaa .inBox .onBox .btnLineAnimation a {
  border-color: #fff;
  color: #fff;
}
.mainTopics ul > li .aaa.c01 .inBox:before {
  background-image: url(../img/top_three_img01.jpg);
}
.mainTopics ul > li .aaa.c02 .inBox:before {
  background-image: url(../img/top_three_img02.jpg);
}
.mainTopics ul > li .aaa.c03 .inBox:before {
  background-image: url(../img/top_three_img03.jpg);
}
.mainTopics ul > li .aaa:hover .inBox .ininin {
  opacity: 0;
}
.mainTopics ul > li .aaa:hover .inBox:before {
  transform: scale(1.05);
}
.mainTopics ul > li .aaa:hover .inBox dl dt:before {
  opacity: 0;
}
.mainTopics ul > li .aaa:hover .inBox .onBox .in01 {
  opacity: 1;
}

.countList {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .countList {
    padding: 40px 0;
  }
}
.countList .countBox {
  position: relative;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.countList .countBox ul {
  width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .countList .countBox ul {
    width: 100%;
  }
}
.countList .countBox ul li {
  width: 420px;
  display: inline-block;
  margin: 0 10px 20px;
}
@media only screen and (max-width: 768px) {
  .countList .countBox ul li {
    width: 100%;
    margin: 0 0 20px;
  }
}
.countList .countBox ul li a {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid #f08200;
  padding: 25px 30px 25px 90px;
  box-shadow: 5px 5px 0px 1px #f3e1cb;
  transition: all .2s;
}
.countList .countBox ul li a span.countText {
  font-size: 14px;
  font-weight: bold;
}
.countList .countBox ul li a:before {
  position: absolute;
  top: -25px;
  left: -12px;
  font-size: 65px;
  font-weight: bold;
  color: #efefef;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.countList .countBox ul li a:hover {
  transform: translateY(0.1875em);
}
.countList .countBox ul li:nth-child(1) a:before {
  content: '01';
}
.countList .countBox ul li:nth-child(2) a:before {
  content: '02';
}
.countList .countBox ul li:nth-child(3) a:before {
  content: '03';
}
.countList .countBox ul li:nth-child(4) a:before {
  content: '04';
}

.gym {
  background: url(../img/top_training_gym_bg.jpg) no-repeat left center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .gym {
    padding-top: 50px;
  }
}
.gym .gymSection {
  margin-left: 6vw;
}
@media only screen and (max-width: 768px) {
  .gym .gymSection {
    margin-left: 0;
  }
}
.gym .gymSection .gymBody {
  position: relative;
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .gym .gymSection .gymBody {
    display: block;
  }
}
.gym .gymSection .gymBody .gymLeft {
  -webkit-flex-basis: 324px;
  flex-basis: 324px;
  margin-top: 50px;
  margin-right: 3vw;
}
@media only screen and (max-width: 768px) {
  .gym .gymSection .gymBody .gymLeft {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    margin-top: 0px;
    margin-right: 20px;
    margin-left: 20px;
  }
  .gym .gymSection .gymBody .gymLeft img {
    max-width: 250px;
  }
}
.gym .gymSection .gymBody .gymText {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .gym .gymSection .gymBody .gymText {
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 40px;
  }
}
.gym .gymSection .gymBody .gymText dl {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .gym .gymSection .gymBody .gymText dl {
    margin-bottom: 20px;
  }
}
.gym .gymSection .gymBody .gymText dl dt {
  font-size: 64px;
  font-family: anziano, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1400px) {
  .gym .gymSection .gymBody .gymText dl dt {
    font-size: 52px;
  }
}
@media only screen and (max-width: 768px) {
  .gym .gymSection .gymBody .gymText dl dt {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.gym .gymSection .gymBody .gymText dl dd {
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .gym .gymSection .gymBody .gymText dl dd {
    font-size: 14px;
  }
}
.gym .gymSection .gymBody .gymImg {
  position: absolute;
  bottom: 10px;
  right: 31%;
  -webkit-flex-basis: 210px;
  flex-basis: 210px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 1200px) {
  .gym .gymSection .gymBody .gymImg {
    display: none;
  }
}
.gym .gymSection .gymBody .gymPause {
  -webkit-flex-basis: 30%;
  flex-basis: 30%;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .gym .gymSection .gymBody .gymPause {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
.gym .gymSection .gymBody .gymPause .imgBody {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  transition: .6s;
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gym .gymSection .gymBody .gymPause .imgBody:before {
  content: '';
  display: block;
  padding-top: 65%;
}
.gym .gymSection .gymBody .gymPause .imgBody span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: .6s;
  transition: .6s;
  background: url() center no-repeat #e5e5e5;
}

.option {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .option {
    padding: 40px 0;
  }
}
.option .engH2 {
  margin-left: 20px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .option .engH2 {
    margin-left: 0px;
    margin-bottom: 40px;
  }
}
.option .engH2 h2 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .option .engH2 h2 {
    margin-bottom: 20px;
  }
}
.option .engH2 span.sub {
  display: inline-block;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .option .engH2 span.sub {
    font-size: 14px;
  }
}
.option .flexThree {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .option .flexThree {
    display: block;
  }
}
.option .flexThree .flexInBox {
  width: 30%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .option .flexThree .flexInBox {
    width: 100%;
    margin-bottom: 50px;
  }
  .option .flexThree .flexInBox:last-child {
    margin-bottom: 0;
  }
}
.option .flexThree .flexInBox .imgB {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .option .flexThree .flexInBox .imgB img {
    max-width: 240px;
  }
}
.option .flexThree .flexInBox .textBox {
  display: inline-block;
}
.option .flexThree .flexInBox p {
  margin-bottom: 30px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .option .flexThree .flexInBox p {
    margin-bottom: 20px;
  }
}
.option .flexThree .flexInBox .ttlO {
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .option .flexThree .flexInBox .ttlO {
    font-size: 18px;
  }
}
.option .flexThree .flexInBox .ttlO:before {
  position: absolute;
  width: 57px;
  height: 3px;
  content: '';
  background: #e57f11;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}

.trainingFontWrap .FontIn {
  position: relative;
  position: relative;
  width: 100%;
  height: 660px;
  /*  slideWin
  ---------------------------------------------------------------*/
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn {
    height: auto;
  }
}
.trainingFontWrap .FontIn .textOn {
  position: relative;
  z-index: 1;
}
.trainingFontWrap .FontIn .textOn:after {
  content: '';
  display: table;
  clear: both;
}
.trainingFontWrap .FontIn .textOn .onTextTitle {
  padding-top: 100px;
  padding-left: 80px;
  margin-bottom: 100px;
  text-align: right;
  float: right;
  margin-right: 4%;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .textOn .onTextTitle {
    padding-top: 140px;
    padding-left: 4%;
    margin-bottom: 60px;
    text-align: right;
    float: none;
    margin-right: 4%;
  }
}
.trainingFontWrap .FontIn .textOn .onTextTitle:after {
  content: '';
  display: table;
  clear: both;
}
.trainingFontWrap .FontIn .textOn .onTextTitle dl {
  text-align: left;
}
.trainingFontWrap .FontIn .textOn .onTextTitle dl dt {
  font-size: 76px;
  font-family: work-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 1;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .textOn .onTextTitle dl dt {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.trainingFontWrap .FontIn .textOn .onTextTitle dl dd {
  font-size: 26px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .textOn .onTextTitle dl dd {
    font-size: 18px;
  }
}
.trainingFontWrap .FontIn .imgBack {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 60%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .imgBack {
    width: 100%;
  }
}
.trainingFontWrap .FontIn .imgBack .animationImg {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .imgBack .animationImg {
    width: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
.trainingFontWrap .FontIn .imgBack .animationImg:before {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #eee;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .imgBack .animationImg:before {
    display: none;
  }
}
.trainingFontWrap .FontIn .imgBack .animationImg .imageOuter {
  z-index: 2;
  overflow: hidden;
  transition: all 0.5s ease-out 0.5s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .imgBack .animationImg .imageOuter {
    width: 100%;
  }
}
.trainingFontWrap .FontIn .imgBack.moving .animationImg:before {
  animation: 1.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s forwards STRIPEIMG;
}
.trainingFontWrap .FontIn .slideWin .bg_body {
  width: 100%;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .slideWin .bg_body {
    padding: 0px 0;
  }
}
.trainingFontWrap .FontIn .slideWin .bg_in {
  width: 100%;
  height: 540px;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .slideWin .bg_in {
    height: 160px;
  }
}
.trainingFontWrap .FontIn .slideWin .background_animation {
  height: 100%;
  width: 100%;
  z-index: 1;
  background-size: 2880px;
  animation: bg 60s linear infinite;
}
@media only screen and (max-width: 768px) {
  .trainingFontWrap .FontIn .slideWin .background_animation {
    background-size: 1320px;
    background-repeat: repeat-x;
    background-position: center;
    animation: bg 70s linear infinite;
  }
}
@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -2880px;
  }
}
.designTwo .designTwoIn .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}
.designTwo .designTwoIn .row.reverse {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.designTwo .designTwoIn .row .designBody {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
@media only screen and (max-width: 768px) {
  .designTwo .designTwoIn .row .designBody {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.designTwo .designTwoIn .row .designBody a {
  padding: 80px;
  margin-bottom: 10px;
  color: #fff;
  display: block;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .designTwo .designTwoIn .row .designBody a {
    margin-bottom: 0;
    padding: 40px 20px;
  }
}
.designTwo .designTwoIn .row .designBody a .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
}
.designTwo .designTwoIn .row .designBody a .imgBox._01:before {
  content: '';
  background-image: url(../img/top_freespace01_off.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.designTwo .designTwoIn .row .designBody a .imgBox._01:after {
  content: '';
  background-image: url(../img/top_freespace01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.designTwo .designTwoIn .row .designBody a .imgBox._02:before {
  content: '';
  background-image: url(../img/top_freespace02_off.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.designTwo .designTwoIn .row .designBody a .imgBox._02:after {
  content: '';
  background-image: url(../img/top_freespace02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.designTwo .designTwoIn .row .designBody a .textBox {
  position: relative;
  z-index: 3;
}
.designTwo .designTwoIn .row .designBody a .textBox dl dt {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .designTwo .designTwoIn .row .designBody a .textBox dl dt {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
  }
}
.designTwo .designTwoIn .row .designBody a .textBox dl dd {
  font-size: 15px;
  font-weight: normal;
  line-height: 2.0;
}
@media only screen and (max-width: 768px) {
  .designTwo .designTwoIn .row .designBody a .textBox dl dd {
    font-size: 14px;
  }
}
.designTwo .designTwoIn .row .designBody a:hover .imgBox._01:before {
  opacity: 0;
}
.designTwo .designTwoIn .row .designBody a:hover .imgBox._02:before {
  opacity: 0;
}

.spaceWrap {
  padding: 140px 0 80px;
}
@media only screen and (max-width: 768px) {
  .spaceWrap {
    padding: 40px 0;
  }
}
.spaceWrap .spespe {
  position: relative;
}
.spaceWrap .spespe:after {
  content: '';
  display: table;
  clear: both;
}
.spaceWrap .spespe .spaceTextSection {
  text-align: center;
  width: 25%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .spaceWrap .spespe .spaceTextSection {
    width: 100%;
    float: none;
    position: relative;
  }
}
.spaceWrap .spespe .spaceTextSection .spaceTextBody {
  position: relative;
  z-index: 1;
  padding: 0px 30px 60px;
}
@media only screen and (max-width: 768px) {
  .spaceWrap .spespe .spaceTextSection .spaceTextBody {
    padding: 0px 30px 40px;
  }
}
.spaceWrap .spespe .spaceTextSection .spaceTextBody:before {
  position: absolute;
  content: "";
  width: 130%;
  height: calc(100% + 40px);
  background-color: #fcf6ef;
  left: 0;
  top: -40px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .spaceWrap .spespe .spaceTextSection .spaceTextBody:before {
    width: 100%;
  }
}
.spaceWrap .spespe .spaceTextSection .spaceTextBody .titleSpace {
  margin-bottom: 30px;
}
.spaceWrap .spespe .spaceTextSection .spaceTextBody .titleSpace h2 {
  color: #e57f11;
  font-size: 30px;
  margin-bottom: 15px;
  font-family: work-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.spaceWrap .spespe .spaceTextSection .spaceTextBody .titleSpace .sub {
  font-size: 15px;
}
.spaceWrap .spespe .spaceTextSection .spaceTextBody p {
  font-size: 14px;
}
.spaceWrap .spespe .imgSpaceWrap {
  position: relative;
  z-index: 1;
  width: 95%;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .spaceWrap .spespe .imgSpaceWrap {
    width: 100%;
    float: none;
  }
}
.spaceWrap .spespe .imgSpaceWrap .imgSpaceBody {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.spaceWrap .spespe .imgSpaceWrap .imgSpaceBody .imgSpaceBox {
  position: relative;
  flex-basis: 25%;
}
@media only screen and (max-width: 768px) {
  .spaceWrap .spespe .imgSpaceWrap .imgSpaceBody .imgSpaceBox {
    flex-basis: 50%;
  }
  .spaceWrap .spespe .imgSpaceWrap .imgSpaceBody .imgSpaceBox:first-child {
    display: none;
  }
}
.spaceWrap .spespe .imgSpaceWrap .imgSpaceBody a {
  position: relative;
  display: block;
  transition: all 0.3s;
  opacity: 1;
}
.spaceWrap .spespe .imgSpaceWrap .imgSpaceBody a img {
  width: 100%;
  height: auto;
}
.spaceWrap .spespe .imgSpaceWrap .imgSpaceBody a:hover {
  opacity: 0.7;
}
.spaceWrap .spespe .imgSpaceWrap .imgSpaceBody .label {
  display: inline-block;
  background: #f08200;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 5px;
}

.informationBlock05 {
  background: #f6f6f6;
}
.informationBlock05 .flexWrap .ttl {
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  white-space: nowrap;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.informationBlock05 .flexWrap .ttl:before {
  content: "";
  background-color: #f08200;
  width: 1px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.informationBlock05 .flexWrap .mainInformation ol {
  counter-reset: my-counter;
  display: flex;
  justify-content: space-between;
  margin-left: -20px;
}
@media only screen and (max-width: 768px) {
  .informationBlock05 .flexWrap .mainInformation ol {
    display: block;
    margin-left: -0px;
  }
}
.informationBlock05 .flexWrap .mainInformation ol li {
  position: relative;
  flex-basis: 100%;
  margin-left: 20px;
  padding: 40px 25px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .informationBlock05 .flexWrap .mainInformation ol li {
    margin-bottom: 20px;
    margin-left: 0px;
    padding: 30px;
  }
}
.informationBlock05 .flexWrap .mainInformation ol li .in .inTtl {
  font-size: 2.4rem;
  margin-bottom: 16px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .informationBlock05 .flexWrap .mainInformation ol li .in .inTtl {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.informationBlock05 .flexWrap .mainInformation ol li .in .inTtl:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 2.0rem;
  margin: 0 auto 18px;
}
@media only screen and (max-width: 768px) {
  .informationBlock05 .flexWrap .mainInformation ol li .in .inTtl:before {
    font-size: 1.6rem;
    margin-right: 20px;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.informationBlock05 .flexWrap .mainInformation ol li .in p {
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .informationBlock05 .flexWrap .mainInformation ol li .in p {
    display: none;
  }
}
.informationBlock05 .flexWrap .mainInformation ol li:not(:last-of-type)::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 7px 0 7px 9px;
  border-color: transparent transparent transparent #000;
  top: 50%;
  right: -14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .informationBlock05 .flexWrap .mainInformation ol li:not(:last-of-type)::after {
    border-width: 9px 7px 0 7px;
    border-color: #000 transparent transparent transparent;
    top: auto;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.underWrap {
  background: #fff;
  margin-top: 80px;
  padding: 40px 40px 20px;
}
@media only screen and (max-width: 768px) {
  .underWrap {
    margin-top: 50px;
    padding: 30px 20px;
  }
}
.underWrap .boxWrap dl {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .underWrap .boxWrap dl {
    display: block;
    border-image-width: 100%;
  }
}
.underWrap .boxWrap dl dt {
  width: 220px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CFCFCF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 768px) {
  .underWrap .boxWrap dl dt {
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.underWrap .boxWrap dl dd {
  display: -webkit-flex;
  display: flex;
  width: 580px;
  -webkit-flex: 1 1 auto;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F2F2F2;
  font-size: 15px;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 768px) {
  .underWrap .boxWrap dl dd {
    width: 100%;
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.bgImg {
  background: url(../img/bg_fix01.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .bgImg {
    background-attachment: inherit;
    margin-bottom: 0px;
    padding: 50px 0;
  }
}
.bgImg .txtVihG {
  color: #fff;
  font-size: 60px;
  font-family: work-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .bgImg .txtVihG {
    font-size: 18px;
  }
}
.bgImg .initial {
  display: inline;
  font-size: 80px;
  color: #2281f7;
}
@media only screen and (max-width: 768px) {
  .bgImg .initial {
    font-size: 26px;
  }
}
.bgImg .plus {
  display: inline;
  color: #ff3c3c;
}

.bgImg_information {
  background: url(../img/bg_information.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: left;
  min-height: 450px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .bgImg_information {
    background-attachment: inherit;
    margin-bottom: 0px;
    padding: 50px 0;
    min-height: auto;
    display: block;
  }
}
.bgImg_information .txtVihG {
  color: #fff;
  font-size: 60px;
  font-family: work-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .bgImg_information .txtVihG {
    font-size: 22px;
  }
}

.aboutUS {
  background: #ebeff2;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .aboutUS {
    padding: 40px 0;
  }
}
.aboutUS .inner1200 {
  background: #fff;
  padding: 60px 50px;
}
@media only screen and (max-width: 768px) {
  .aboutUS .inner1200 {
    padding: 40px 0px 30px;
  }
}
.aboutUS .inner1200 .engH2 {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .aboutUS .inner1200 .engH2 {
    margin-bottom: 40px;
  }
}
.aboutUS .inner1200 .engH2 h2 {
  margin-bottom: 20px;
}
.aboutUS .inner1200 .boxWrap ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
}
@media only screen and (max-width: 768px) {
  .aboutUS .inner1200 .boxWrap ul {
    margin: 0 -0%;
    display: block;
  }
}
.aboutUS .inner1200 .boxWrap ul li {
  width: 23%;
  margin: 0 1% 0px;
  background: #fff;
  text-align: center;
  transition: all 0.8s;
  opacity: 0;
  transform: translate(0, 30px) scale(1);
}
@media only screen and (max-width: 768px) {
  .aboutUS .inner1200 .boxWrap ul li {
    width: 100%;
    margin: 0 0% 35px;
  }
  .aboutUS .inner1200 .boxWrap ul li:last-child {
    margin-bottom: 0;
  }
}
.aboutUS .inner1200 .boxWrap ul li a {
  position: relative;
  display: block;
  margin-bottom: 35px;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.aboutUS .inner1200 .boxWrap ul li a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .aboutUS .inner1200 .boxWrap ul li a {
    margin-bottom: 15px;
  }
}
.aboutUS .inner1200 .boxWrap ul li a .ttx {
  position: absolute;
  bottom: -30px;
  left: 15px;
  color: #bababa;
  font-size: 38px;
  font-family: 'Oswald', sans-serif;
}
@media only screen and (max-width: 768px) {
  .aboutUS .inner1200 .boxWrap ul li a .ttx {
    left: 2vw;
    font-size: 7vw;
  }
}
@media only screen and (max-width: 768px) {
  .aboutUS .inner1200 .boxWrap ul li .ttl {
    font-size: 15px;
  }
}
.aboutUS.moving .inner1200 .boxWrap ul li {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.aboutUS.moving .inner1200 .boxWrap ul li:nth-child(1) {
  transition-delay: 0.2s;
}
.aboutUS.moving .inner1200 .boxWrap ul li:nth-child(2) {
  transition-delay: 0.4s;
}
.aboutUS.moving .inner1200 .boxWrap ul li:nth-child(3) {
  transition-delay: 0.6s;
}
.aboutUS.moving .inner1200 .boxWrap ul li:nth-child(4) {
  transition-delay: 0.8s;
}
.aboutUS.moving .inner1200 .boxWrap ul li:nth-child(5) {
  transition-delay: 1.0s;
}

.newsWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .newsWrap {
    display: block;
  }
}
.newsWrap .newsTitle {
  background: #fff;
  -webkit-flex-basis: 490px;
  flex-basis: 490px;
  margin-bottom: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .newsWrap .newsTitle {
    display: block;
    padding: 50px 30px 40px;
  }
}
.newsWrap .newsTitle .newsBox {
  text-align: center;
}
.newsWrap .newsTitle .newsBox dl {
  margin-bottom: 20px;
}
.newsWrap .newsTitle .newsBox dl dt {
  font-size: 24px;
}
.newsWrap .newsTitle .newsBox dl dd {
  font-size: 15px;
}
.newsWrap .newsTitle .newsBox .btn a {
  width: calc( 230vw / 1440 * 100);
  height: 50px;
}
.newsWrap .newsListA {
  background: #8c8c8c;
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding: 80px 60px;
}
@media only screen and (max-width: 768px) {
  .newsWrap .newsListA {
    padding: 30px 20px;
  }
}
.newsWrap .newsListA ul {
  border-top: 1px solid #ddd;
}
.newsWrap .newsListA ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .newsWrap .newsListA ul li a {
    display: block;
  }
}
.newsWrap .newsListA ul li a:hover .newsTitleIN {
  text-decoration: underline;
}
.newsWrap .newsListA ul li a time {
  display: inline-block;
  padding: 0 1em;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 14px;
  margin-right: 2em;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .newsWrap .newsListA ul li a time {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.newsWrap .newsListA ul li a .newsTitleIN {
  font-size: 14px;
}

.contactTop {
  background: url(../img/top_contact_bg.jpg) no-repeat top center;
  background-size: cover;
  padding: 80px 0;
}
.contactTop .contactTopWrap {
  text-align: center;
}
.contactTop .contactTopWrap .contactTopSection .engH2 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .engH2 {
    margin-bottom: 40px;
  }
}
.contactTop .contactTopWrap .contactTopSection .engH2 h2 {
  margin-bottom: 20px;
  color: #333;
}
.contactTop .contactTopWrap .contactTopSection .engH2 p {
  font-weight: bold;
}
.contactTop .contactTopWrap .contactTopSection .boxWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap {
    display: block;
  }
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col {
  width: 45%;
  background: #fff;
  padding: 50px 40px 40px;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col {
    width: 100%;
    background: #fff;
    padding: 40px 20px 30px;
  }
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col .ttlttl {
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col .ttlttl {
    font-size: 14px;
  }
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col .tell {
  color: #f08200;
  font-size: 34px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col .tell {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col .tell a {
    color: #f08200;
  }
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col .tell:before {
  content: '';
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  background: url(../img/icon_tel_orange.png) no-repeat center center;
  width: 27px;
  height: 29px;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col .tell:before {
    left: -30px;
    background-size: 80%;
  }
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col .time {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2.0;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col .time {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col.b_telephone {
    margin-bottom: 30px;
  }
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col.b_telephone .ttlttl {
  margin-bottom: 20px;
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col.b_mailform .ttlttl {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col.b_mailform .ttlttl {
    margin-bottom: 30px;
  }
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col.b_mailform .mainFormA {
  text-align: center;
}
.contactTop .contactTopWrap .contactTopSection .boxWrap .col.b_mailform .mainFormA a {
  display: inline-block;
  background: #f08200;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc( 270vw / 1440 * 100);
  font-size: 16px;
  text-align: center;
  height: 70px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .contactTop .contactTopWrap .contactTopSection .boxWrap .col.b_mailform .mainFormA a {
    width: 100%;
    height: auto;
    font-size: 14px;
    padding: 15px 10px;
  }
}

.top_access .outer {
  display: table;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .top_access .outer {
    display: block;
    width: 100%;
  }
}
.top_access .outer .inText {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText {
    display: block;
    width: 100%;
  }
}
.top_access .outer .inText .box {
  padding: 1rem 0 1rem 9.7rem;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText .box {
    padding: 30px 30px;
  }
}
.top_access .outer .inText .box .ttl {
  padding: 1.8rem 0 1.3rem 0rem;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText .box .ttl {
    padding: 0rem 0 0.5rem 0rem;
  }
}
.top_access .outer .inText .box .ttl dl {
  display: -webkit-flex;
  display: flex;
}
.top_access .outer .inText .box .ttl dl dt {
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 38px;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText .box .ttl dl dt {
    font-size: 26px;
    margin-right: 20px;
  }
}
.top_access .outer .inText .box .ttl dl dd {
  padding-top: 15px;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText .box .ttl dl dd {
    font-size: 14px;
    padding-top: 10px;
  }
}
.top_access .outer .inText .box p {
  font-size: 15px;
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText .box p {
    font-size: 13px;
  }
  .top_access .outer .inText .box p a {
    color: #0080cc;
  }
}
.top_access .outer .inText .box .accessBox {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText .box .accessBox {
    margin-top: 30px;
  }
}
.top_access .outer .inText .box .accessBox dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inText .box .accessBox dt {
    font-size: 16px;
  }
}
.top_access .outer .inText .box .accessBox dd {
  font-size: 15px;
}
.top_access .outer .inMap {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inMap {
    display: block;
    width: 100%;
  }
}
.top_access .outer .inMap #map_canvas01 {
  height: 600px;
}
@media only screen and (max-width: 768px) {
  .top_access .outer .inMap #map_canvas01 {
    display: block;
    height: 350px;
  }
}

.engH2 h2 {
  color: #e57f11;
  font-size: 42px;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .engH2 h2 {
    font-size: 28px;
  }
}
.engH2 .sub {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.lineOrange {
  background: -webkit-linear-gradient(transparent 50%, #ffefeb 0%);
  background: linear-gradient(transparent 50%, #ffefeb 0%);
}

.lineOrangeAll {
  background: -webkit-linear-gradient(transparent 0%, #ffefeb 0%);
  background: linear-gradient(transparent 0%, #ffefeb 0%);
}

.lineWhite {
  background: -webkit-linear-gradient(transparent 50%, #3d3c4e 0%);
  background: linear-gradient(transparent 50%, #3d3c4e 0%);
}

.lineWhiteAll {
  background: -webkit-linear-gradient(transparent 0%, #3d3c4e 0%);
  background: linear-gradient(transparent 0%, #3d3c4e 0%);
}

/*=========================================================*/
/*	footer{*/
/*=========================================================*/
footer {
  background: #231815;
  color: #fff;
}
footer .footerTop .footerTopInner {
  position: relative;
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner {
    display: block;
  }
}
footer .footerTop .footerTopInner .footerLeft {
  -webkit-flex-basis: 30%;
  flex-basis: 30%;
  margin-right: 0px;
  margin-bottom: 0;
  background: #1f1a19;
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerLeft {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    padding: 50px 20px 0;
  }
}
footer .footerTop .footerTopInner .footerLeft .footerLeftHk {
  margin-bottom: 140px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerLeft .footerLeftHk {
    margin-bottom: 0px;
  }
}
footer .footerTop .footerTopInner .footerLeft .footerLeftIn {
  margin-right: 60px;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerLeft .footerLeftIn {
    margin-right: 0px;
    margin-left: 0;
  }
}
footer .footerTop .footerTopInner .footerLeft .footerLeftIn .footerLogoH {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerLeft .footerLeftIn .footerLogoH {
    margin-bottom: 0px;
  }
  footer .footerTop .footerTopInner .footerLeft .footerLeftIn .footerLogoH img {
    width: 200px;
  }
}
footer .footerTop .footerTopInner .footerLeft .copy {
  background: #fff;
  color: #333;
  font-size: 14px;
  padding: 30px 0;
  text-align: right;
}
footer .footerTop .footerTopInner .footerLeft .copy p {
  text-align: center;
}
footer .footerTop .footerTopInner .footerRight {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 70%;
  flex-basis: 60%;
  text-align: left;
  padding-top: 80px;
  padding-left: 60px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerRight {
    padding: 50px 20px 0;
  }
}
footer .footerTop .footerTopInner .footerRight .footerRightIn {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerRight .footerRightIn {
    margin-bottom: 0px;
    padding-bottom: 100px;
  }
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .footerMenu {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerRight .footerRightIn .footerMenu {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink .footeradress {
    text-align: left;
    display: inline-block;
  }
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink .footeradress .accessBox {
  margin-top: 30px;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink .footeradress .accessBox dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink .footeradress .accessBox dd {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink ul li {
  margin-bottom: 8px;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink ul li:last-child {
  margin-bottom: 0;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink ul li.bottomSpe {
  margin-bottom: 40px;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink ul li a {
  color: #fff;
  font-size: 14px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink ul li a:hover {
  opacity: 0.7;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._01 {
  margin-right: 50px;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._01 {
    margin-right: 0px;
    margin-bottom: 50px;
  }
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._02 {
  margin-right: 100px;
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._03 .bannerListFooter .banner {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._03 .bannerListFooter .banner {
    text-align: center;
  }
  footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._03 .bannerListFooter .banner a {
    display: block;
    text-align: center;
  }
  footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._03 .bannerListFooter .banner a img {
    max-width: 220px;
    text-align: center;
  }
}
footer .footerTop .footerTopInner .footerRight .footerRightIn .menuLink._03 .bannerListFooter .banner:last-child {
  margin-bottom: 0;
}
footer .footerTop .footerTopInner .footerRight .snsBtnList {
  /* margin-left: 10%; */
  /* margin-bottom: 50px; */
  bottom: 50px;
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0px, 0px);
}
footer .footerTop .footerTopInner .footerRight .snsBtnList ul {
  display: flex;
}
footer .footerTop .footerTopInner .footerRight .snsBtnList ul li {
  margin: 0 10px;
}
footer .outerLink {
  background: #3d3d3d;
  text-align: center;
  border-top: 1px solid #676767;
  border-bottom: 1px solid #676767;
  padding: 10px 0;
}
footer .outerLink .linkIn ul li {
  display: inline-block;
  margin: 0 5px;
}
@media only screen and (max-width: 768px) {
  footer .outerLink .linkIn ul li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
footer .outerLink .linkIn ul li a {
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .outerLink .linkIn ul li a:hover {
  opacity: 0.7;
}
footer .copySP {
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
}

/*=========================================================*/
/*	header*/
/*=========================================================*/
@media only screen and (max-width: 768px) {
  #header {
    background: #232427;
  }
}
#header .headerBottom {
  position: relative;
  margin-left: 40px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  #header .headerBottom {
    display: block;
    margin-left: 20px;
    padding: 0 0 0 0px;
  }
}
#header .headerBottom .headerOn {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background: #232427;
  padding-left: 20px;
}

header {
  top: 0;
  z-index: 999;
  transition: 0.35s 0.7s;
  position: fixed;
  width: 100%;
  padding: 0 0px 0 0px;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .commonOuter #head_Logo {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo {
    margin-top: 0px;
  }
}
header .commonOuter #head_Logo a {
  position: relative;
}
header .commonOuter #head_Logo a span {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .commonOuter #head_Logo a span.a02 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a span.a01 {
    opacity: 0;
  }
  header .commonOuter #head_Logo a span.a02 {
    opacity: 1;
  }
  header .commonOuter #head_Logo a span img {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  header .commonOuter #head_Logo a span img {
    width: 80px;
  }
}

header.secHeader .commonOuter #head_Logo {
  position: relative;
  top: -10px;
}
@media only screen and (max-width: 768px) {
  header.secHeader .commonOuter #head_Logo {
    top: 50%;
  }
}

header.active_header,
.sec header {
  transition: 0.01s 0.0s;
}

header .commonOuter {
  display: block;
  height: 70px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  header .commonOuter {
    height: 60px;
  }
}

header .commonOuter:after {
  content: '';
  display: table;
  clear: both;
}

@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo {
    float: left;
    position: relative;
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}
header .commonOuter #head_Logo a {
  display: block;
  position: relative;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a {
    top: 0%;
    transform: translate3d(0, 0%, 0);
  }
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a {
    display: block;
    width: 220px;
  }
}

header .commonOuter #head_Logo a {
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

header .commonOuter #head_Logo a:hover {
  opacity: 0.7;
}

header .commonOuter nav {
  display: block;
  height: 100%;
}

header .commonOuter nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}

header .commonOuter nav ul li {
  height: 100%;
}
header .commonOuter nav ul li.iconMenuSNS01 a img {
  width: 12px;
  height: auto;
}
header .commonOuter nav ul li.iconMenuSNS02 a img {
  width: 22px;
  height: auto;
}

header .commonOuter nav ul li a {
  position: relative;
  display: flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 1.3rem;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  text-align: center;
  overflow: hidden;
}
header .commonOuter nav ul li a:before {
  content: '';
  background: #f08200;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate3d(0, 2px, 0);
  transition: all 0.2s ease-in-out 0s;
}
header .commonOuter nav ul li a div.ddd {
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
}
header .commonOuter nav ul li a span.naviA {
  width: 100%;
  display: block;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .commonOuter nav ul li a span.naviA.en {
  position: relative;
  top: 0;
  left: 0;
}
header .commonOuter nav ul li a span.naviA.jp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0px, 0px);
  opacity: 0;
}
header .commonOuter nav ul li a div.snsA {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}
header .commonOuter nav ul li a div.snsA .imgb {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .commonOuter nav ul li a div.snsA .imgb.a01 {
  position: relative;
  top: 0;
  left: 0;
}
header .commonOuter nav ul li a div.snsA .imgb.a02 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0px, 0px);
  opacity: 0;
}
header .commonOuter nav ul li a:hover:before {
  transform: translate3d(0, 0px, 0);
}
header .commonOuter nav ul li a:hover span.naviA.en {
  opacity: 0;
}
header .commonOuter nav ul li a:hover span.naviA.jp {
  opacity: 1;
}
header .commonOuter nav ul li a:hover div.snsA .imgb.a01 {
  opacity: 0;
}
header .commonOuter nav ul li a:hover div.snsA .imgb.a02 {
  opacity: 1;
}

header .commonOuter nav ul li a span {
  display: block;
}

header .commonOuter nav ul li a:hover:after {
  opacity: 1.0;
}

header .commonOuter .headerBtn .btt {
  width: 90px;
  height: 90px;
  display: block;
  text-align: center;
  padding-top: 54px;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

header .commonOuter .headerBtn .btn_global {
  background: #006fff;
  color: #fff;
  right: 90px;
}

header .commonOuter .headerBtn .btn_global:hover {
  background: #187dff;
}

header .commonOuter .headerBtn .btn_contact {
  background: #000000;
  color: #fff;
  right: 0;
}

header .commonOuter .headerBtn .btn_contact:hover {
  background: #222;
}

header .commonOuter .headerBtn .btt .icon {
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
}

header .commonOuter .headerBtn .btn_global .icon {
  width: 26px;
}

header .commonOuter .headerBtn .btn_contact .icon {
  width: 24px;
}

header .commonOuter .headerBtn .icon img {
  width: 100%;
  height: auto;
}

header .commonOuter .headerBtn .te {
  color: #fff;
  font-size: 11px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.00em;
}

@media only screen and (max-width: 768px) {
  /*  header
  ---------------------------------------------------------------*/
  header {
    position: relative;
    top: 0;
    left: 0%;
    width: 100%;
    transform: translate3d(0%, 0px, 0);
    z-index: 20;
    background: #fff;
    -webkit-box-shadow: 0px 7.5px 18px 1.2px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 7.5px 18px 1.2px rgba(0, 0, 0, 0.12);
    transition: 0.35s 0.7s;
  }

  header .headerInner {
    display: block;
    height: 70px;
    margin: 0 auto;
    padding: 0 0 0 2%;
  }

  header .headerInner:after {
    content: '';
    display: table;
    clear: both;
  }

  header .headerInner #head_Logo {
    float: left;
    position: relative;
    top: 50%;
    left: 10px;
    transform: translate3d(0, -50%, 0);
  }

  header .headerInner #head_Logo a {
    display: block;
    width: 170px;
  }

  header .headerInner .headerBtn .btt {
    width: 70px;
    height: 70px;
    display: block;
    text-align: center;
    padding-top: 46px;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  header .headerInner .headerBtn .btn_global {
    background: #006fff;
    color: #fff;
    right: 0px;
  }

  header .headerInner .headerBtn .btn_global:hover {
    background: #187dff;
  }

  header .headerInner .headerBtn .btn_contact {
    display: none;
  }

  header .headerInner .headerBtn .btt .icon {
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
  }

  header .headerInner .headerBtn .btn_global .icon {
    width: 26px;
  }

  header .headerInner .headerBtn .btn_contact .icon {
    width: 24px;
  }

  header .headerInner .headerBtn .icon img {
    width: 100%;
    height: auto;
  }

  header .headerInner .headerBtn .te {
    color: #fff;
    font-size: 11px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.00em;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  header {
    position: relative;
    top: 0%;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 97;
    background: #fff;
  }
}
@media only screen and (max-width: 768px) {
  /*  header
  ---------------------------------------------------------------*/
  /*	nav
  ---------------------------------------------------------------*/
  header nav {
    display: none;
  }
}
#navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
}
#navigation:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.85s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
#navigation .navigation_inner {
  position: absolute;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100%;
  padding: 60px 0;
  background: #333;
  z-index: 11;
  transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -webkit-justify-content: center;
  justify-content: center;
  overflow-y: scroll;
}
@media only screen and (max-width: 768px) {
  #navigation .navigation_inner {
    right: -80%;
    width: 80%;
  }
}
#navigation .navigation_inner a {
  color: #fff;
}
#navigation .navigation_inner .navigation_menu {
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#navigation .navigation_inner .navigation_menu li {
  margin: 0px 0;
}
#navigation .navigation_inner .navigation_menu li ul.sub_item {
  text-align: left;
  background: #000;
  display: none;
}
#navigation .navigation_inner .navigation_menu a {
  position: relative;
  width: 100%;
  display: block;
  font-size: 15px;
  padding: 20px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 768px) {
  #navigation .navigation_inner .navigation_menu a {
    font-size: 13px;
    padding: 14px 15px;
  }
}
#navigation .navigation_inner .navigation_menu a:before, #navigation .navigation_inner .navigation_menu a:after {
  content: '';
  border: 1.2px solid transparent;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 4px;
  bottom: 0;
  -webkit-transform: rotate(45deg) translate3d(0px, -4px, 0);
  transform: rotate(-45deg) translate3d(0px, -4px, 0);
  border-top: none;
  border-left: none;
  right: 16px;
  border-color: #fff;
  /* transition: all 0.2s ease-in-out 0.0s; */
}
#navigation .navigation_inner .navigation_menu .sub_btn {
  position: relative;
  font-size: 13px;
  padding: 14px 15px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#navigation .navigation_inner .navigation_menu .sub_btn:before, #navigation .navigation_inner .navigation_menu .sub_btn:after {
  content: '';
  border: 1.2px solid transparent;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg) translate3d(0px, -4px, 0);
  transform: rotate(45deg) translate3d(0px, -4px, 0);
  border-top: none;
  border-left: none;
  right: 20px;
  border-color: #fff;
  /* transition: all 0.2s ease-in-out 0.0s; */
}
#navigation .navigation_inner .nav32 {
  margin-bottom: 50px;
}
#navigation .navigation_inner .nav32 li {
  margin: 15px 0;
}
#navigation .navigation_inner .nav32 a {
  font-size: 13px;
}
#navigation .navigation_inner .snsWrap {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
#navigation .navigation_inner .snsWrap .flex {
  display: inline;
  margin-left: 20px;
}
#navigation .navigation_inner .snsWrap .flex.facebook {
  margin-left: 0;
}
#navigation .navigation_inner #close_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
}
#navigation .navigation_inner #close_btn .closeBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fff;
  cursor: pointer;
}
#navigation .navigation_inner #close_btn .closeBody .closeIn {
  overflow: hidden;
  position: relative;
  width: 24px;
  height: 25px;
}
#navigation .navigation_inner #close_btn .closeBody .closeIn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: all .3s;
}
#navigation .navigation_inner #close_btn .closeBody .closeIn span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#navigation .navigation_inner #close_btn .closeBody .closeIn span:nth-of-type(2) {
  bottom: 6px;
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}
#navigation .black {
  background: #000;
  position: absolute;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.menuOpen #navigation:after {
  opacity: 1;
}
.menuOpen #navigation .navigation_inner {
  transform: translate3d(-100%, 0, 0);
}
.menuOpen .black {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

#menuWrap {
  position: relative;
  display: block;
  width: 80px;
  height: auto;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  #menuWrap {
    width: 60px;
    height: 60px;
    margin-left: auto;
    display: none;
  }
}
#menuWrap .menuBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #333;
  cursor: pointer;
}
#menuWrap .menuBtn .menu-trigger {
  overflow: hidden;
  position: relative;
  width: 27px;
  height: 21px;
}
#menuWrap .menuBtn .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}
#menuWrap .menuBtn .menu-trigger span:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  transition: background 0.2s ease-in-out 0.0s;
}
#menuWrap .menuBtn .menu-trigger span:nth-of-type(1) {
  top: 0;
  transition: all .3s;
}
#menuWrap .menuBtn .menu-trigger span:nth-of-type(2) {
  top: 9px;
  transition: all .3s;
}
#menuWrap .menuBtn .menu-trigger span:nth-of-type(3) {
  bottom: 1px;
  transition: all .3s;
}

@media screen and (min-width: 769px) {
  /*<start>==========================================================*/
  body {
    font-size: 80%;
  }

  .sp, br.s {
    display: none !important;
  }

  .text {
    font-size: 15px;
    line-height: 1.80;
    letter-spacing: 0.04em;
  }

  .text14 {
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 0.04em;
  }

  /*=========================================================*/
  /*	○○○*/
  /*=========================================================*/
  /*	○○○○
  ---------------------------------------------------------------*/
  /*	○○○○○
  -----------------------------------------------------------*/
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  html {
    font-size: 75%;
  }

  body {
    font-size: 0.9rem;
  }

  html, body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
  }

  .pc, br.p {
    display: none !important;
  }

  .text14 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 0.04em;
  }

  .text,
  .text16 {
    font-size: 13px;
    line-height: 1.90;
    letter-spacing: 0.04em;
  }

  img {
    width: 100%;
    height: auto;
  }

  /*=========================================================*/
  /*	sp_header*/
  /*=========================================================*/
  #spNavigation .head {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 998;
    background: #000;
    display: flex;
  }

  /* logo */
  #spNavigation .head .head_logo {
    display: table-cell;
    vertical-align: middle;
    height: 50px;
  }

  #spNavigation .head .head_logo a {
    display: block;
    padding-top: 4px;
  }

  #spNavigation .head .head_logo img {
    width: 32px;
  }

  /* demo */
  #spNavigation .head #sp_btn_demo {
    width: 28%;
    height: 50px;
    vertical-align: middle;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  #spNavigation .head #sp_btn_demo a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #spNavigation .head #sp_btn_demo img {
    width: 20px;
  }

  /* mail */
  #spNavigation .head #sp_btn_mail {
    width: 28%;
    height: 50px;
    vertical-align: middle;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  #spNavigation .head #sp_btn_mail a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #spNavigation .head #sp_btn_mail img {
    width: 26px;
    padding-top: 4px;
  }

  #spNavigation .head .nav_btn {
    width: 28%;
    height: 50px;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    vertical-align: middle;
  }

  /* button */
  #spNavigation .head .nav_btn .menuBtn {
    width: 28%;
    display: table;
    padding: 13px 0px 11px 0;
    position: relative;
    top: 0px;
    right: 0;
  }

  #spNavigation .head .nav_btn .menuBtn a.menu-trigger {
    display: table-cell;
    vertical-align: middle;
  }

  #spNavigation .head .nav_btn .menu-trigger {
    position: relative;
    width: 24px;
    height: 25px;
    display: inline-block;
  }

  #spNavigation .head .nav_btn .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }

  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(1) {
    top: 0;
    transition: all .3s;
  }

  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(2) {
    top: 9px;
    transition: all .3s;
  }

  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(3) {
    bottom: 4px;
    transition: all .3s;
  }

  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }

  /* pagetop */
  #spNavigation .head .btn_pagetop {
    width: 16%;
    height: 50px;
    display: table-cell;
    vertical-align: middle;
  }

  .btn_pagetop a {
    width: 100%;
    height: 50px;
    padding: 10px 0 9px;
    box-sizing: border-box;
    background: #c89d18;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    display: block;
    transition: all 0.2s ease-in-out 0.0s;
  }

  .btn_pagetop i {
    display: block;
    transition: all 0.3s ease-in-out 0.0s;
  }

  /*=========================================================*/
  /*	○○○*/
  /*=========================================================*/
  /*	○○○○
  ---------------------------------------------------------------*/
  /*	○○○○○
  -----------------------------------------------------------*/
  /*<end>============================================================*/
}

/*# sourceMappingURL=style.css.map */
