@charset "utf-8";
/********************************
    ベース（基本設定）
*******************************/
.color01 {
  color: #f00;
}
.color02 {
  color: #e5f5f8;
}
.color03 {
  color: #000;
}
.color04 {
  color: #000;
}
.bgcolor01 {
  background-color: #f00;
}
.bgcolor02 {
  background-color: #e5f5f8;
}
.bgcolor03 {
  background-color: #000;
}
.bgcolor04 {
  background-color: #000;
}
/*********************************************
    リセット
*********************************************/
figure {
  margin: 0;
}
/*********************************************
    汎用クラス
*********************************************/
/**
エリア
*/
.area {
  padding: 90px 0;
}
.area80 {
  padding: 80px 0;
}
.area60 {
  padding: 60px 0;
}
.area40 {
  padding: 40px 0;
}
.area20 {
  padding: 20px 0;
}
.areab {
  padding-bottom: 90px;
}
.area80b {
  padding-bottom: 80px;
}
.area60b {
  padding-bottom: 60px;
}
.area40b {
  padding-bottom: 40px;
}
.area20b {
  padding-bottom: 20px;
}
.areat {
  padding-top: 90px;
}
.area80t {
  padding-top: 80px;
}
.area60t {
  padding-top: 60px;
}
.area40t {
  padding-top: 40px;
}
.area20t {
  padding-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .area {
    padding: 50px 0;
  }
  .area80 {
    padding: 60px 0;
  }
  .area60 {
    padding: 40px 0;
  }
  .area40 {
    padding: 20px 0;
  }
  .areab {
    padding-bottom: 50px;
  }
  .area80b {
    padding-bottom: 60px;
  }
  .area60b {
    padding-bottom: 40px;
  }
  .area40b {
    padding-bottom: 20px;
  }
  .areat {
    padding-top: 50px;
  }
  .area80t {
    padding-top: 60px;
  }
  .area60t {
    padding-top: 40px;
  }
  .area40t {
    padding-top: 20px;
  }
}
/**
マージン
*/
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt40 {
  margin-top: 40px;
}
.mt60 {
  margin-top: 60px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
}
/**
幅
*/
/*タブレット時に幅１００％*/
.w40tb,
.w55tb {
  margin-right: auto;
  margin-left: auto;
}
.w40tb {
  width: 40%;
}
.w45tb {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .w40tb,
  .w55tb {
    margin-bottom: 5%;
    width: 100%;
  }
}
.w80a {
  margin: 0 auto;
  width: 80%;
}
.w70a {
  margin: 0 auto;
  width: 70%;
}
@media only screen and (max-width: 599px) {
  .w80a {
    margin: 0 auto 2%;
    width: 100%;
  }
  .w70a {
    margin: 0 auto 2%;
    width: 100%;
  }
}
/**
テキスト
*/
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
/*文字をまとめて落とす*/
.group {
  display: inline-block;
}
/*打消し線*/
.strike {
  text-decoration: line-through;
}
/**
heightLine
*/
[class*='heightLine'] {
  display: block;
}
@media only screen and (max-width: 1024px) {
  [class*='heightLine-tb'] {
    height: auto !important;
  }
}
@media only screen and (max-width: 599px) {
  [class*='heightLine-sp'] {
    height: auto !important;
  }
}
/**
その他
*/
/*トリミングする要素のブロック化*/
.trim {
  display: block;
}
/*モバイル時に順序を並べ替え*/
@media only screen and (max-width: 599px) {
  .change_sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
/*PC時のみ非表示*/
@media only screen and (min-width: 1025px) {
  .no_pc {
    display: none;
  }
}
/*tb以下非表示*/
@media only screen and (max-width: 1024px) {
  .no_tb {
    display: none;
  }
}
/*sp時のみ非表示*/
@media only screen and (max-width: 599px) {
  .no_sp {
    display: none;
  }
}
/*ポジション*/
.position {
  position: relative;
}
/*********************************************
    汎用レイアウト（全ページ共通）
*********************************************/
/*汎用レイアウト1（全ページ共通）*/
.layout_cmn01 .ttl {
  margin-bottom: 40px;
}
.layout_cmn01 .cap {
  margin-bottom: 10px;
}
.layout_cmn01 .fig {
  margin-bottom: 5px;
}
@media only screen and (max-width: 599px) {
  .layout_cmn01 .ttl {
    margin-bottom: 20px;
  }
}
/*汎用レイアウト2（全ページ共通）*/
.layout_cmn02 .ttl {
  margin-bottom: 20px;
}
.layout_cmn02 .cap {
  margin-bottom: 10px;
}
.layout_cmn02 .fig {
  margin-bottom: 5px;
}
@media only screen and (max-width: 599px) {
  .layout_cmn02 .ttl {
    margin-bottom: 20px;
  }
}
/*2カラムコンテンツ
（サイドメニューとメインコンテンツ）*/
.column2 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.column2 .side {
  width: 300px;
}
.column2 .main {
  width: calc(100% - 350px);
}
@media only screen and (max-width: 1024px) {
  .column2 .inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .column2 .side {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 5%;
    width: 100%;
  }
  .column2 .main {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 5%;
    width: 100%;
  }
}
/*左右の要素を入れ替え*/
.change {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
/*左右の要素を順に入れ替え*/
.alternate .flexb:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
/*********************************************
    汎用画像クラス　img
*********************************************/
.img {
  text-align: center;
}
/*背景画像*/
.bgimg {
  position: relative;
}
.img.-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.img.-bgimg img {
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
/*IE対策*/
/*フィルター*/
.img.-filter:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  content: '';
  opacity: 0.8;
}
/*object-fit(cover)IE対応*/
.img.-cover img {
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
/*IE対策*/
/*object-fit(contain)IE対応*/
.img.-contain img {
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: contain; object-position: 50% 50%;';
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
/*IE対策*/
/*object-fit画像右寄せ*/
.img.-right img {
  font-family: 'object-fit: cover; object-position: center right;';
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
/*object-fit画像上寄せ*/
.img.-top img {
  font-family: 'object-fit: cover; object-position: top center;';
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
/*モバイル時に小さめに表示*/
@media only screen and (max-width: 599px) {
  .img.-smallsp {
    margin-right: auto;
    margin-left: auto;
    width: 80%;
  }
}
/*モバイル時により小さめに表示*/
.img.-smallersp {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 599px) {
  .img.-smallersp {
    width: 50%;
  }
}
/*正円画像*/
.img.-circle {
  overflow: hidden;
  border-radius: 50%;
}
/*角丸画像*/
.img.-round {
  overflow: hidden;
  border-radius: 20px;
}
/**
アスペクト比固定
*/
/*基本アスペクト
（下に続く比率クラスと合わせて使用）*/
.aspect {
  position: relative;
  display: block;
}
.aspect:before {
  display: block;
  content: '';
}
.aspect img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
/*IE対策*/
/*比率20％*/
.aspect.-ratio20:before {
  padding-top: 20%;
}
/*比率30％*/
.aspect.-ratio30:before {
  padding-top: 30%;
}
/*比率40％*/
.aspect.-ratio40:before {
  padding-top: 40%;
}
/*比率45％*/
.aspect.-ratio45:before {
  padding-top: 45%;
}
/*比率50％*/
.aspect.-ratio50:before {
  padding-top: 50%;
}
/*比率55％*/
.aspect.-ratio55:before {
  padding-top: 55%;
}
/*比率60％*/
.aspect.-ratio60:before {
  padding-top: 60%;
}
/*比率65％*/
.aspect.-ratio65:before {
  padding-top: 65%;
}
/*比率70％*/
.aspect.-ratio70:before {
  padding-top: 70%;
}
/*比率75％*/
.aspect.-ratio75:before {
  padding-top: 75%;
}
/*比率80％*/
.aspect.-ratio80:before {
  padding-top: 80%;
}
/*比率90％*/
.aspect.-ratio90:before {
  padding-top: 90%;
}
/*比率100％*/
.aspect.-ratio100:before {
  padding-top: 100%;
}
/*比率110％*/
.aspect.-ratio110:before {
  padding-top: 110%;
}
/*比率115％*/
.aspect.-ratio115:before {
  padding-top: 115%;
}
/*比率120％*/
.aspect.-ratio120:before {
  padding-top: 120%;
}
/*比率130％*/
.aspect.-ratio130:before {
  padding-top: 130%;
}
/*比率135％*/
.aspect.-ratio135:before {
  padding-top: 135%;
}
/*********************************************
    fead系
*********************************************/
.fead-right {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
}
.fead-right.mv {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fead-left {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translate3d(100vw, 0, 0);
          transform: translate3d(100vw, 0, 0);
}
.fead-left.mv {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
/*********************************************
    共通ボックス　box_cmn
*********************************************/
/*共通ボックス１*/
.box_cmn01 {
  position: relative;
  z-index: 1;
  padding: 30px 50px;
  background: #d7d7d9;
}
.box_cmn01 .img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
}
.box_cmn01 .img:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#d7d7d9), color-stop(50%, rgba(215,215,217,0)));
  background: -webkit-linear-gradient(left, #d7d7d9 0%, rgba(215,215,217,0) 50%);
  background: linear-gradient(to right, #d7d7d9 0%, rgba(215,215,217,0) 50%);
  content: '';
}
.box_cmn01 .block_txt {
  width: 60%;
}
.box_cmn01 .ttl {
  margin-bottom: 30px;
}
.box_cmn01 .btn {
  margin-top: 20px;
}
@media only screen and (max-width: 599px) {
  .box_cmn01 {
    padding: 30px 20px;
  }
  .box_cmn01 .img {
    width: 35%;
  }
  .box_cmn01 .block_txt {
    width: 80%;
  }
}
/*********************************************
    共通ブロック　block-cmn
*********************************************/
/*共通ブロック１*/
.block_cmn01 {
  text-align: center;
}
.block_cmn01 .telephone {
  font-family: 'Sawarabi Mincho', sans-serif;
}
.block_cmn01 .tel {
  margin-left: 10px;
}
.block_cmn01 a {
  font-size: 24px;
  letter-spacing: 0.1em;
}
.block_cmn01 .name {
  text-align: right;
  width: 224px;
  margin: 0 auto;
}
/*********************************************
    共通タイトル　ttl_cmn
*********************************************/
/*共通タイトル1*/
.ttl_cmn01 {
  letter-spacing: 0.1em;
  font-size: 65px;
  font-family: 'Sawarabi Mincho', sans-serif;
  line-height: 130%;
}
.ttl_cmn01 .ttlin {
  position: relative;
  display: block;
  padding-left: 70px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
.ttl_cmn01 .ttlin:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 1px;
  background: #000;
  content: '';
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ttl_cmn01.-midium {
  font-size: 50px;
}
.ttl_cmn01.-normal {
  font-size: 28px;
}
.ttl_cmn01.-small {
  font-size: 24px;
}
.ttl_cmn01.-smaller {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .ttl_cmn01 {
    font-size: 50px;
  }
  .ttl_cmn01.-midium {
    font-size: 36px;
  }
}
@media only screen and (max-width: 599px) {
  .ttl_cmn01 {
    font-size: 30px;
  }
  .ttl_cmn01.-midium {
    font-size: 24px;
  }
  .ttl_cmn01.-small {
    font-size: 20px;
  }
}
/*共通タイトル２*/
.ttl_cmn02 {
  position: relative;
  padding-left: 35px;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.ttl_cmn02:before {
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  width: 20px;
  height: 1px;
  background: #000;
  content: '';
}
@media only screen and (max-width: 599px) {
  .ttl_cmn02 {
    font-size: 20px;
  }
}
/*共通タイトル３*/
.ttl_cmn03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  font-size: 28px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.ttl_cmn03:after {
  display: block;
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  margin-left: 10px;
  width: 100px;
  height: 1px;
  background: #000;
  content: '';
}
@media only screen and (max-width: 599px) {
  .ttl_cmn03 {
    font-size: 22px;
  }
}
/*共通タイトル４*/
.ttl_cmn04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ttl_cmn04 .ttlin {
  margin-left: 20px;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 18px;
}
/*共通タイトル５*/
.ttl_cmn05 {
  font-family: 'Sawarabi Mincho', sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
}
.ttl_cmn05:before {
  content: "";
  display: block;
  background: #000;
  width: 20px;
  height: 1px;
  margin-right: 10px;
}
.ttl_cmn05.-large {
  font-size: 36px;
}
.ttl_cmn05.-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/*共通タイトル６*/
.ttl_cmn06 {
  text-align: center;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ttl_cmn06:before {
  content: "";
  display: block;
  background: #000;
  height: 1px;
  width: 20px;
  margin-right: 10px;
}
.ttl_cmn06:after {
  content: "";
  display: block;
  background: #000;
  height: 1px;
  width: 20px;
  margin-left: 10px;
}
@media only screen and (max-width: 599px) {
  .ttl_cmn06 {
    font-size: 20px;
  }
}
/*********************************************
    共通リスト　list_cmn
*********************************************/
/*ページネーション１*/
.pagenation01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagenation01 .item {
  margin: 0 10px;
}
.pagenation01 .prev {
  position: relative;
  margin-right: 20px;
}
.pagenation01 .prev a {
  font-size: 20px;
}
.pagenation01 .prev a:before {
  content: '<';
}
.pagenation01 .next {
  position: relative;
  margin-left: 20px;
}
.pagenation01 .next a {
  font-size: 20px;
}
.pagenation01 .next a:before {
  content: '>';
}
.pagenation01 a,
.pagenation01 .now {
  font-weight: bold;
}
.pagenation01 .number a,
.pagenation01 .now {
  display: block;
  width: 40px;
  height: 40px;
  background: #bfbfbf;
  color: #fff;
  text-align: center;
  line-height: 40px;
}
.pagenation01 .number a:hover,
.pagenation01 .now {
  background: #000;
  opacity: 1;
}
@media only screen and (max-width: 599px) {
  .pagenation01 .item {
    margin: 0 5px;
  }
  .pagenation01 .prev {
    margin-right: 20px;
  }
  .pagenation01 .next {
    margin-left: 20px;
  }
  .pagenation01 .number a,
  .pagenation01 .now {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
/*ページネーション２*/
.pagenation02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagenation02 .item {
  margin: 0 10px;
}
.pagenation02 .prev {
  position: relative;
  margin-right: 20px;
}
.pagenation02 .prev a {
  font-size: 20px;
}
.pagenation02 .prev a:before {
  content: '<';
}
.pagenation02 .next {
  position: relative;
  margin-left: 20px;
}
.pagenation02 .next a {
  font-size: 20px;
}
.pagenation02 .next a:before {
  content: '>';
}
.pagenation02 a,
.pagenation02 .now {
  font-weight: bold;
}
.pagenation02 .number a,
.pagenation02 .now {
  display: block;
  padding: 2px 8px;
}
.pagenation02 .number a:hover,
.pagenation02 .now {
  -webkit-transform: translateY(-3px) scale(1.7);
      -ms-transform: translateY(-3px) scale(1.7);
          transform: translateY(-3px) scale(1.7);
}
@media only screen and (max-width: 599px) {
  .pagenation02 .item {
    margin: 0 5px;
  }
  .pagenation02 .prev {
    margin-right: 20px;
  }
  .pagenation02 .next {
    margin-left: 20px;
  }
}
/*共通リスト1*/
.list_cmn01 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.list_cmn01 .data {
  padding-left: 20px;
}
/*共通リスト２（データリスト）
「サロン情報」*/
.list_cmn02 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.list_cmn02 .datattl {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 150px;
  font-weight: bold;
}
@media only screen and (max-width: 599px) {
  .list_cmn02 .item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .list_cmn02 .datattl {
    margin-bottom: 10px;
    width: 100%;
  }
}
/*共通リスト３（リクルートページ内リンク）*/
.list_cmn03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.list_cmn03 .item {
  width: 20%;
}
.list_cmn03 .item01 {
  position: relative;
}
.list_cmn03 .item01:after,
.list_cmn03 .item01:before {
  display: block;
  position: absolute;
  top: 50%;
  background: #bfbfbf;
  height: 20px;
  width: 1px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.list_cmn03 .item01:after {
  right: 0;
  content: "";
}
.list_cmn03 .item01:before {
  left: 0;
}
.list_cmn03 .item01:first-child:before {
  content: "";
}
.list_cmn03 .item01:nth-child(4):after {
  content: none;
}
.list_cmn03 .entry a {
  background: #ffbf3a;
  color: #fff;
  border: 1px solid #bfbfbf;
}
.list_cmn03 a {
  text-align: center;
  display: block;
  padding: 15px 0;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 18px;
  line-height: 110%;
}
.list_cmn03 .itemin {
  display: block;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.list_cmn03.-blue .entry a {
  background: #009dbf;
}
@media only screen and (max-width: 1024px) {
  .list_cmn03 .item {
    width: 33.333%;
  }
  .list_cmn03 .item01:nth-child(4):before {
    content: "";
  }
}
@media only screen and (max-width: 599px) {
  .list_cmn03 .item {
    width: 100%;
  }
  .list_cmn03 .item01:after {
    content: "";
  }
  .list_cmn03 .item01:before {
    content: "";
  }
  .list_cmn03 .item01:nth-child(4):after {
    content: "";
  }
}
/*********************************************
    共通ボタン　btn_cmn
*********************************************/
/*共通ボタン１*/
.btn_cmn01 a {
  display: block;
  width: 80px;
  border-bottom: 1px solid #999;
  color: #999;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.btn_cmn01.-center a {
  margin: 0 auto;
}
.btn_cmn01.-white a {
  border-color: #fff;
  color: #fff;
}
/*共通ボタン２*/
.btn_cmn02 a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #000;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-family: 'Sawarabi Mincho', sans-serif;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.btn_cmn02 a:after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 0%;
  height: 110%;
  background: #000;
  content: '';
  -webkit-transition: all 0.75s ease 0s;
  transition: all 0.75s ease 0s;
  -webkit-transform: translate3d(-50%, -50%, 0) skewX(-60deg);
          transform: translate3d(-50%, -50%, 0) skewX(-60deg);
}
.btn_cmn02 a:hover {
  color: #fff;
  opacity: 1;
}
.btn_cmn02 a:hover:after {
  width: 200%;
}
/*共通ボタン３*/
.btn_cmn03 a {
  position: relative;
  display: block;
  padding-bottom: 10px;
  text-align: center;
  font-size: 16px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.btn_cmn03 a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 40px;
  height: 1px;
  background: #999;
  content: '';
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.btn_cmn03 a:before {
  position: absolute;
  bottom: 0;
  display: block;
  width: 1px;
  height: 10px;
  background: #999;
}
.btn_cmn03.-next a {
  padding-right: 20px;
}
.btn_cmn03.-next a:after {
  right: 0;
  left: inherit;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.btn_cmn03.-next a:before {
  right: 0;
  content: '';
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.btn_cmn03.-prev a {
  padding-left: 20px;
}
.btn_cmn03.-prev a:after {
  left: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.btn_cmn03.-prev a:before {
  left: 0;
  content: '';
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}
/*共通ボタン４*/
.btn_cmn04 a {
  background: #ffbf3a;
  display: block;
  text-align: center;
  color: #fff;
  position: relative;
  border-radius: 10em;
  padding: 5px 20px;
  max-width: 300px;
}
.btn_cmn04 a:after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn_cmn04.-center a {
  margin: 0 auto;
}
.btn_cmn04.-right a {
  margin-left: auto;
}
.btn_cmn04.-wide a {
  padding: 10px 20px;
}
.btn_cmn04.-back a:after {
  content: "←";
  right: inherit;
  left: 20px;
}
/*********************************************
    他共通エレメント　txt_cmn img_cmn
*********************************************/
/*共通装飾１（横線、セクション用）*/
.deco_cmn01:before {
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
  width: 60px;
  height: 1px;
  background: #000;
  content: '';
}
/*共通画像１*/
.img_cmn01 {
  position: relative;
  padding: 0 20px 20px 0;
}
.img_cmn01:after {
  content: "";
  border: 1px solid #000;
  position: absolute;
  bottom: 0;
  right: 0;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
}
/*********************************************
    モジュール（共通機能群）
*********************************************/
/*フォーム*/
.form .item {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  padding: 15px 0;
}
.form .datattl {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 250px;
}
.form .ttlin {
  display: inline-block;
  margin-left: 5px;
  line-height: 1.6em;
  padding: 0 10px;
  background: #eee;
}
.form .require {
  color: #f00;
  background: #fce5e7;
}
.form .data {
  padding-left: 50px;
  width: 100%;
}
.form .data input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 10px;
  width: 100%;
  border: none;
  background: #eee;
}
.form .data input[type='radio'] {
  display: none;
}
.form .data input[type='radio'] + label {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 20px;
  padding-left: 20px;
  line-height: 200%;
}
.form .data input[type='radio'] + label::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #bfbfbf;
  content: '';
}
.form .data input[type='radio']:checked + label::after {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 4px;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #303841;
  content: '';
}
.form .data input[type='radio']:checked + label {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.form .data input[type='number'] {
  margin-right: 10px;
  width: 70px;
}
.form .data select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
}
.form .data textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  width: 100%;
  height: 170px;
  border: none;
  background: #eee;
  font-size: 14px;
  font-family: '游ゴシック', YuGothic, Hiragino Sans, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', Hiragino Kaku Gothic ProN, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
.form .address01 input {
  max-width: 200px;
}
.form .btn {
  margin-top: 30px;
}
.form .btn button {
  position: relative;
  display: block;
  margin: 5px auto;
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 5em;
  background: #ffbf3a;
  color: #fff;
  text-align: center;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.form .btn button:hover {
  opacity: 1;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.form .btn button:before {
  position: absolute;
  top: 50%;
  left: 20px;
  content: '\f054';
  font-weight: bold;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form .btn.-blue button {
  background: #009dbf;
}
.form .btn-back button:first-child:before {
  content: '\f053';
}
@media only screen and (max-width: 1024px) {
  .form .item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 10px 0;
  }
  .form .datattl {
    display: block;
    margin-bottom: 10px;
  }
  .form .require {
    position: relative;
    right: 0;
  }
  .form .data {
    padding-left: 0;
  }
}
/**************************************
    共通要素
**************************************/
/**
ヘッダー
header
*/
.header .sitettl {
  display: none;
}
[data-element-id].header .sitettl {
  display: block;
}
.header_contents .logo {
  margin-top: 30px;
}
.header_contact .recruit a {
  display: block;
  padding: 5px 0;
  width: 130px;
  border: 1px solid #000;
  text-align: center;
  font-size: 18px;
  font-family: '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝', 'Sawarabi Mincho', serif;
}
.header_icon .icon a {
  display: block;
  text-shadow: 1px 0 3px #fff, 0 1px 3px #fff, -1px 0 3px #fff, 0 -1px 3px #fff;
  font-size: 18px;
}
.header_icon .icon a:before {
  font-weight: bold;
  font-family: 'Font Awesome 5 Free';
}
.header_icon .telephone a:before {
  content: '\f879';
}
.header_icon .mail a:before {
  content: '\f0e0';
}
.header_icon .insta a:before {
  content: '\f16d';
  font-family: 'Font Awesome 5 Brands';
}
.header_icon .telephone {
  position: relative;
}
.header_icon .telbox {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  display: block;
  overflow: hidden;
  width: 0;
  background: #fff;
  text-align: center;
  white-space: nowrap;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header_icon .telbox.is-active {
  width: 170px;
  border: 1px solid #000;
}
[data-element-id].header_icon .telbox {
  width: 170px;
  border: 1px solid #000;
}
.totop {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
}
.totop:before {
  content: '\f077';
  font-weight: bold;
  font-family: 'Font Awesome 5 Free';
}
/*トップ用ヘッダー*/
.home .header_contents .logo {
  display: none;
}
[data-element-id].home .header_contents .logo {
  display: block;
}
.home .header_contact .recruit {
  position: fixed;
  right: 100px;
  bottom: 50px;
  z-index: 100;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .header_contact .recruit a {
  border-color: #fff;
  -webkit-box-shadow: 0 0 4px 0 #999;
          box-shadow: 0 0 4px 0 #999;
  color: #fff;
  text-shadow: 1px 0 4px #999, 0 1px 4px #999, -1px 0 4px #999, 0 -1px 4px #999;
}
.home .header_contact .recruit a:hover {
  border-color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  text-shadow: none;
}
.home .header_contact .recruit.-type01 a {
  border-color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  text-shadow: none;
}
@media only screen and (max-width: 1024px) {
  .home .header_contact {
    display: none;
  }
}
.home .header_icon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 100vh;
  background: rgba(255,255,255,0.7);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .header_icon .icon {
  padding: 10px 0;
}
.home .header_contact.action .header_icon {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.home .header_contact.action .recruit {
  visibility: hidden;
  opacity: 0;
}
[data-element-id].home .header_contact .recruit {
  display: block;
}
/*下層用ヘッダー*/
.lower .header {
  position: absolute;
  z-index: 250;
  width: 100%;
}
[data-element-id].lower .header {
  position: relative;
}
.lower .header_contact {
  position: fixed;
  top: 27px;
  right: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.lower .header_contact .recruit a {
  -webkit-box-shadow: 0 0 5px 2px #fff;
          box-shadow: 0 0 5px 2px #fff;
  text-shadow: 1px 0 3px #fff, 0 1px 3px #fff, -1px 0 3px #fff, 0 -1px 3px #fff;
}
@media only screen and (max-width: 599px) {
  .lower .header_contact {
    display: none;
  }
}
.lower .header_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.lower .header_icon .icon {
  margin-right: 20px;
}
/**
グローバルナビ
gnav
*/
.gnav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 250;
  max-width: 300px;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,0.9);
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-overflow-scrolling: touch;
}
.gnav.action {
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}
/* [data-element-id] .gnav {
  transform: none;
}
[data-element-id].overlay:after {
  content: none;
} */
.accordion-body {
  overflow: auto;
  height: 100vh;
}
.nav_wrap {
  overflow: auto;
  padding-right: 60px;
  height: calc(100vh - 70px);
}
.nav_logo {
  padding: 30px 50px 30px 30px;
}
.nav_logo a {
  display: block;
  text-align: center;
}
.nav_global {
  padding-top: 20px;
  padding-left: 10px;
}
.nav_global .item01 {
  margin-bottom: 30px;
}
.nav_global .itemin {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.nav_global a {
  display: block;
}
.nav_global .nav_second {
  position: relative;
  padding-left: 20px;
}
.nav_global .nav_second:before {
  position: absolute;
  top: -5px;
  left: 10px;
  display: block;
  width: 1px;
  height: calc(100% + 5px);
  background: #000;
  content: '';
}
.nav_global .item02 {
  margin-bottom: 10px;
}
.nav_recruit {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,0.3);
          box-shadow: 0 0 1px 1px rgba(0,0,0,0.3);
}
.nav_recruit a {
  display: block;
  border: 1px solid #000;
  text-align: center;
  font-size: 18px;
  font-family: '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝', 'Sawarabi Mincho', serif;
}
.nav_contact {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 100vh;
}
.nav_contact .icon {
  margin: 10px 0;
}
.nav_contact .icon a {
  display: block;
  text-shadow: 1px 0 3px #fff, 0 1px 3px #fff, -1px 0 3px #fff, 0 -1px 3px #fff;
  font-size: 18px;
}
.nav_contact .icon a:before {
  font-weight: bold;
  font-family: 'Font Awesome 5 Free';
}
.nav_contact .telephone a:before {
  content: '\f879';
}
.nav_contact .mail a:before {
  content: '\f0e0';
}
.nav_contact .insta a:before {
  content: '\f16d';
  font-family: 'Font Awesome 5 Brands';
}
.nav_contact .telephone {
  position: relative;
}
.nav_contact .telbox {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  display: block;
  overflow: hidden;
  width: 0;
  background: #fff;
  text-align: center;
  white-space: nowrap;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav_contact .telbox.is-active {
  width: 170px;
  border: 1px solid #000;
}
[data-element-id].nav_contact .telbox {
  width: 170px;
  border: 1px solid #000;
}
.toggle {
  position: fixed !important;
  top: 25px;
  right: 15px;
  z-index: 251;
  display: block !important;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
[data-element-id].toggle {
  top: 70px;
}
.toggle .bar {
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 3px;
  background: #000;
  -webkit-box-shadow: 0 0 3px 3px #fff;
          box-shadow: 0 0 3px 3px #fff;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.toggle .bar:before {
  position: relative;
  left: -6px;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  -webkit-box-shadow: 0 0 3px 3px #fff;
          box-shadow: 0 0 3px 3px #fff;
  content: '';
}
.toggle .bar:nth-child(1) {
  top: calc(50% - 8px);
}
.toggle .bar:nth-child(2) {
  top: calc(50% + 8px);
}
@media only screen and (max-width: 599px) {
  .toggle {
    top: 15px;
  }
}
.toggle.active .bar {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.toggle.active .bar:before {
  left: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.toggle.active .bar:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.toggle.active .bar:nth-child(2),
.toggle.active .bar:nth-child(3) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.toggle.active .bar:nth-child(2) {
  top: 50%;
}
.overlay:after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 100vh;
  background: #000;
  content: '';
  opacity: 0.3;
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}
[data-element-id] #wrapper {
  padding-top: 0 !important;
}
[data-element-id] .gnav .no-pc {
  display: block;
}
[data-element-id] .gnav.fixed {
  position: relative;
}
/**
フッター
footer
*/
.footer {
  padding-top: 80px;
  border-top: 1px solid #999;
}
.footer_contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.footer_contents .logo a {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .footer_contents .logo {
    margin-bottom: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .footer_contents {
    margin-bottom: 0px;
  }
}
.footer_map {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
}
.footer_map .item {
  width: 45%;
}
.footer_map .map {
  margin-bottom: 10px;
  min-height: 210px;
}
.footer_map .address {
  font-size: 12px;
}
@media only screen and (max-width: 1024px) {
  .footer_map {
    margin: 0 auto;
    width: 80%;
  }
  .footer_map .item {
    width: 48%;
  }
}
@media only screen and (max-width: 599px) {
  .footer_map {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 350px;
    width: 100%;
  }
  .footer_map .item {
    margin-bottom: 50px;
    width: 100%;
  }
}
.nav_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
.nav_footer .item01 {
  padding-right: 20px;
  width: 25%;
}
.nav_footer .itemin {
  margin-bottom: 10px;
}
.nav_footer .item02 {
  margin-bottom: 10px;
}
.nav_footer a {
  position: relative;
  display: block;
  padding-left: 15px;
}
.nav_footer a:before {
  position: absolute;
  left: 0;
  content: '>';
}
@media only screen and (max-width: 599px) {
  .nav_footer {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 0;
  }
  .nav_footer .item01 {
    margin-bottom: 50px;
    width: 50%;
  }
}
.copy {
  padding: 5px 0;
  background: #000;
  color: #fff;
  text-align: center;
}
/**
サイドメニュー
side
*/
.side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
.side .section {
  margin-bottom: 50px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .side .section {
    width: 48%;
  }
}
@media only screen and (max-width: 599px) {
  .side .section {
    width: 100%;
  }
}
.list-side01 .datattl {
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.list-side01 .data {
  padding: 15px;
  border-bottom: 1px solid #999;
}
.list-side01 a {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .list-side01.-archive {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .list-side01.-archive .datattl {
    width: 100%;
  }
  .list-side01.-archive .data {
    width: 48%;
  }
}
@media only screen and (max-width: 1024px) {
  .side .list {
    width: 48%;
  }
  .list.-archive {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .list.-archive .datatitle {
    width: 100%;
  }
  .list.-archive .data {
    width: 48%;
  }
}
@media only screen and (max-width: 599px) {
  .side .list {
    width: 100%;
  }
  .list.-archive .data {
    width: 100%;
  }
}
/*********************************************
    各個別コンテンツ
*********************************************/
/**
トップページ
*/
/*トップアニメーション*/
.opening {
  position: fixed;
  z-index: 300;
  max-height: 100vh;
  width: 100%;
  height: 100vh;
  background: #fff;
  -webkit-transition: 1s;
  transition: 1s;
}
.opening .img {
  height: 100vh;
  background-image: url(/import/tenant_1/160.16.122.97/html/images/01home/img01.png);
  background-size: 120%;
  opacity: 0;
  -webkit-mask-image: url(/upload/tenant_1/594b82efa2f9310869c13676f8d75cd1.png);
          mask-image: url(/upload/tenant_1/594b82efa2f9310869c13676f8d75cd1.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.opening.action .img {
  -webkit-animation: opening 20s 1s forwards;
          animation: opening 20s 1s forwards;
}
.opening.action .img.hide {
  height: 0;
  -webkit-animation: none;
          animation: none;
  opacity: 0;
}
.opening.hide {
  overflow: hidden;
  max-height: 0;
}
@media only screen and (max-width: 599px) {
  .opening .img {
    -webkit-mask-size: 60%;
            mask-size: 60%;
  }
}
@media all and (-ms-high-contrast: none) {
  .opening .img {
    background: url(/upload/tenant_1/56337e080683770d592ce86997187ce1.png) no-repeat center;
  }
  .opening.action .img {
    -webkit-animation: opening_ie 20s 1s forwards;
            animation: opening_ie 20s 1s forwards;
  }
}
[data-element-id] .opening {
  display: none;
}
.home {
  overflow-y: scroll;
  margin-bottom: 1px;
  height: 100vh;
}
.home.action {
  margin-bottom: 0;
  height: auto;
}
[data-element-id] .home {
  height: auto;
  margin-bottom: 0;
}
.home .header_icon {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.home .header_icon:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .header_icon.action01 {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.home .header_icon.action02:after {
  width: 0%;
}
[data-element-id] .home .header_icon {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
[data-element-id] .home .header_icon:after {
  content: none;
}
.home .header_contact .recruit {
  overflow: hidden;
  max-width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .header_contact .recruit:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .header_contact .recruit.action01 {
  max-width: 130px;
}
.home .header_contact .recruit.action02:after {
  width: 0;
}
[data-element-id] .home .header_contact .recruit {
  overflow: auto;
  max-width: none;
}
[data-element-id] .home .header_contact .recruit:after {
  content: none;
}
.homevisual .news {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.homevisual .news:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.homevisual .news.action01 {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.homevisual .news.action02:after {
  width: 0;
}
[data-element-id] .homevisual .news {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
[data-element-id] .homevisual .news:after {
  content: none;
}
.homevisual .address .txt {
  -webkit-mask-image: url(/import/tenant_1/160.16.122.97/html/images/01home/mask.png);
          mask-image: url(/import/tenant_1/160.16.122.97/html/images/01home/mask.png);
  -webkit-mask-size: 200% auto;
          mask-size: 200% auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
}
.homevisual .address .txt.action {
  -webkit-animation: mask 1s both cubic-bezier(0, 0, 0.25, 1);
          animation: mask 1s both cubic-bezier(0, 0, 0.25, 1);
}
[data-element-id] .homevisual .address .txt {
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}
/*メインビジュアル*/
.mainimg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mainimg img {
  width: 100%;
}
.mainimg .uk-slidenav-position {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.mainimg .uk-slideshow {
  position: absolute;
  top: 0;
  height: 100% !important;
}
.mainimg .uk-slideshow li {
  height: 100% !important;
}
.mainimg .uk-slideshow .uk-flex {
  height: 100%;
}
.mainimg .uk-slideshow img {
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -webkit-transform: scale(1.2) translate3d(0, 0, 0);
          transform: scale(1.2) translate3d(0, 0, 0);
  -webkit-animation: mainimg 20s forwards;
          animation: mainimg 20s forwards;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
/*IE対策*/
.homevisual {
  position: relative;
  height: 100vh;
}
.homevisual .img {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.homevisual .img img {
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -webkit-transform: scale(1.2) translate3d(0, 0, 0);
          transform: scale(1.2) translate3d(0, 0, 0);
  -webkit-animation: mainimg 20s forwards;
          animation: mainimg 20s forwards;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
/*IE対策*/
.homevisual .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.homevisual .recruit {
  position: absolute;
  right: 50px;
  bottom: 50px;
}
.homevisual .recruit a {
  display: block;
  padding: 5px 30px;
  border: 1px solid #fff;
  color: #fff;
}
.homevisual .address {
  position: absolute;
  bottom: 50px;
  left: 10%;
}
.homevisual .address .txt {
  margin-bottom: 20px;
  color: #fff;
}
.homevisual .address a {
  color: #fff;
}
.homevisual .news {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 10px 5px 100px;
  width: 500px;
}
.homevisual .news:before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff;
  content: '';
}
.homevisual .news .time {
  margin-right: 20px;
}
.homevisual .news .head {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  overflow: hidden;
}
.homevisual .news a {
  position: relative;
  display: block;
  overflow: hidden;
  padding-right: 25px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.homevisual .news a:after {
  position: absolute;
  right: 0;
  content: '\f061';
  font-weight: bold;
  font-family: 'Font Awesome 5 Free';
}
@media only screen and (max-width: 599px) {
  .homevisual .logo img {
    width: 60%;
  }
  .homevisual .address {
    left: 20px;
  }
  .homevisual .address .txt {
    font-size: 12px;
  }
  .homevisual .news {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-left: 20px;
    width: 100%;
  }
  .homevisual .news:before {
    opacity: 0.8;
  }
  .homevisual .news .time {
    width: 100%;
  }
}
/*コンセプト（トップ）*/
.home01 .block_txt {
  padding-bottom: 50px;
}
.home01 .img02 {
  margin: -40px auto 0;
  width: 50%;
}
@media only screen and (max-width: 599px) {
  .home01 .block_txt {
    padding-bottom: 0;
  }
  .home01 .img02 {
    margin: -20px 0 0 auto;
  }
}
/*サロンメニュー（トップ）*/
.home04 .box {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.home04 .img {
  position: absolute;
  z-index: -1;
  width: calc(50% - 300px);
  height: 400px;
}
.home04 .img01 {
  top: 0;
  left: 0;
}
.home04 .img02 {
  right: 0;
  bottom: 0;
}
.home04 .inner {
  padding: 50px;
  max-width: 840px;
  background: #fff;
}
.home04 .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .home04 .img {
    width: 40%;
    height: 300px;
  }
  .home04 .inner {
    padding: 20px;
    max-width: 700px;
    background: rgba(255,255,255,0.9);
  }
}
@media only screen and (max-width: 599px) {
  .home04 .inner {
    max-width: 450px;
  }
}
/*スタイル（トップ）*/
.home06 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home06 .ttl {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home06 .box {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  padding-left: 50px;
}
.home06 .block {
  margin-bottom: 100px;
}
.home06 .head {
  margin-bottom: 30px;
}
.home06 .list .item {
  padding: 1%;
  width: 25%;
}
.home06 .list a {
  display: block;
}
.home06 .btn {
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .home06 .list .item {
    width: 50%;
  }
}
@media only screen and (max-width: 599px) {
  .home06 .inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .home06 .ttl {
    margin-bottom: 30px;
    width: 100%;
  }
  .home06 .box {
    padding-left: 30px;
    width: 100%;
  }
  .home06 .block {
    margin-bottom: 50px;
  }
  .home06 .head {
    margin-bottom: 20px;
  }
}
/*スタッフ（トップ）*/
.home07 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.home07 .ttl {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  margin-top: 150px;
}
.home07 .box {
  width: 60%;
}
.home07 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home07 .item {
  margin-right: 10%;
  margin-bottom: 5%;
  width: 38%;
}
.home07 .item:nth-child(even) {
  margin-top: 40px;
}
.home07 .item:nth-child(3) {
  margin-left: auto;
}
.home07 a {
  display: block;
}
.home07 .img {
  margin-bottom: 5px;
}
.home07 .name {
  font-size: 18px;
  font-family: 'Sawarabi Mincho', sans-serif;
  line-height: 130%;
}
@media only screen and (max-width: 1024px) {
  .home07 .box {
    width: 70%;
  }
}
@media only screen and (max-width: 599px) {
  .home07 .inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .home07 .ttl {
    margin-top: 0;
    width: 100%;
    text-align: right;
  }
  .home07 .box {
    width: 100%;
  }
  .home07 .item {
    margin-right: 5%;
    width: 43%;
  }
  .home07 .name {
    font-size: 16px;
  }
}
/*リクルート（トップ）*/
.home08 .img {
  margin-left: auto;
  width: calc(50% + 300px);
  height: 400px;
}
.home08 .block_txt {
  position: relative;
  z-index: 1;
  margin-top: -150px;
  padding: 30px 30px 30px 0;
  width: 50%;
  background: rgba(255,255,255,0.7);
}
@media only screen and (max-width: 1024px) {
  .home08 .img {
    width: 80%;
    height: 300px;
  }
  .home08 .block_txt {
    margin-top: -100px;
    width: 70%;
  }
}
@media only screen and (max-width: 599px) {
  .home08 .img {
    max-width: 500px;
    width: 90%;
    height: 150px;
  }
  .home08 .block_txt {
    margin-top: -50px;
    padding-right: 10px;
    width: 90%;
  }
}
/*ブログ（トップ）*/
.home09 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home09 .ttl {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home09 .box {
  padding-left: 50px;
  width: 80%;
}
.home09 .img {
  margin-bottom: 10px;
}
.home09 .img a {
  display: block;
}
.home09 .time {
  display: block;
  margin-bottom: 5px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.home09 .btn {
  margin-top: 20px;
}
@media only screen and (max-width: 599px) {
  .home09 .inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .home09 .ttl {
    margin-bottom: 30px;
    width: 100%;
  }
  .home09 .box {
    padding-left: 0;
    width: 100%;
  }
}
/**
下層ページ共通要素
*/
/*下層ページ表示アニメーション*/
.lower {
  overflow-y: scroll;
  margin-bottom: 1px;
}
.lower.action {
  margin-bottom: 0;
  height: auto;
}
#progress {
  position: fixed;
  z-index: 300;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  text-align: center;
}
[data-element-id] #progress {
  display: none;
}
#progress #progress_bar {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  width: 0;
  height: 2px;
  background-color: #63513b;
}
#loading_bar {
  position: absolute;
  bottom: 0%;
  width: 0;
  height: 2px;
  background-color: #63513b;
}
[data-element-id] #loading_bar {
  display: none;
}
/*.lower #header,
.lower #main,
.lower #footer {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}*/
[data-element-id] .lower #header,
[data-element-id] .lower #main,
[data-element-id] .lower #footer {
  visibility: visible;
  opacity: 1;
}
.lower #header.visible,
.lower #main.visible,
.lower #footer.visible {
  visibility: visible;
  opacity: 1;
}
/*トップビジュアル１（下層共通）*/
.topvisual01 .img {
  height: 250px;
}
.topvisual01 .ttl {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: -50px;
  padding-right: 80px;
  letter-spacing: 0.1em;
  font-size: 65px;
  font-family: 'Sawarabi Mincho', sans-serif;
  line-height: 130%;
}
.topvisual01 .ttl:before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff;
  content: '';
  opacity: 0.5;
}
.topvisual01 .ttlin {
  display: block;
  font-size: 18px;
  line-height: 130%;
}
@media only screen and (max-width: 1024px) {
  .topvisual01 .ttl {
    font-size: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .topvisual01 .img {
    height: 200px;
  }
  .topvisual01 .ttl {
    padding-right: 40px;
    font-size: 36px;
  }
}
/**
下層ページ各コンテンツ
*/
/*コンセプト*/
.concept02 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
.concept02 .datattl {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 5px 80px 5px 0;
  width: 200px;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.concept02 .datattl:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 100px;
  height: 1px;
  background: #000;
  content: '';
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.concept02 .data {
  padding-left: 80px;
}
.concept02 .head {
  margin-bottom: 10px;
  color: #ffcd71;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.concept02 .txt {
  margin-bottom: 20px;
}
.concept02 .block_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.concept02 .img {
  width: 48%;
}
.concept02 .img02 {
  margin-top: 10%;
}
@media only screen and (max-width: 599px) {
  .concept02 .item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .concept02 .datattl {
    display: inline-block;
    padding-right: 20px;
    width: auto;
  }
  .concept02 .datattl:after {
    right: inherit;
    left: 100%;
    width: 100vw;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .concept02 .data {
    padding-left: 0;
    width: 100%;
  }
  .concept02 .head {
    font-size: 20px;
  }
}
.concept03 .img {
  margin-left: auto;
  width: calc(50% + 300px);
  height: 400px;
}
.concept03 .block_txt {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  width: 50%;
}
.concept03 .ttl {
  margin-bottom: 50px;
}
.concept03 .txt {
  padding-left: 50px;
}
@media only screen and (max-width: 1024px) {
  .concept03 .img {
    width: 80%;
    height: 300px;
  }
  .concept03 .block_txt {
    margin-top: -50px;
    width: 70%;
  }
}
@media only screen and (max-width: 599px) {
  .concept03 .img {
    max-width: 500px;
    width: 90%;
    height: 150px;
  }
  .concept03 .block_txt {
    margin-top: 20px;
    padding-right: 10px;
    width: 100%;
  }
  .concept03 .ttl {
    margin-bottom: 30px;
  }
  .concept03 .txt {
    padding-left: 30px;
  }
}
/*サロン情報*/
.salon02 .block_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 150px;
  max-height: 400px;
  width: 100%;
}
.salon02 .img {
  width: 33.333%;
}
.salon03 {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.salon03 .img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.salon03 .inner {
  padding: 30px;
}
.salon03.-type01 .inner {
  background: rgba(255,255,255,0.8);
}
@media only screen and (max-width: 599px) {
  .salon03 {
    padding: 20px 0;
  }
  .salon03 .inner {
    padding: 10px;
  }
}
.salon04 .block_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.salon04 .img,
.salon04 .map {
  width: 50%;
}
.salon04 .list {
  margin: 30px auto 0;
  width: 80%;
}
.salon04 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
.salon04 .datattl {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 150px;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.salon04 .datattl:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 100px;
  height: 1px;
  background: #000;
  content: '';
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.salon04 .data {
  padding-left: 80px;
}
.salon04 .txt {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .salon04 .list {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .salon04 .block_img {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .salon04 .img,
  .salon04 .map {
    width: 100%;
  }
  .salon04 .item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .salon04 .datattl {
    display: inline-block;
    padding-right: 20px;
    width: auto;
  }
  .salon04 .datattl:after {
    right: inherit;
    left: 100%;
    width: 100vw;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .salon04 .data {
    padding-left: 0;
    width: 100%;
  }
}
.salon05 {
  margin-bottom: 100px;
}
.salon05 .list01 > .item {
  padding: 50px 0;
  border-bottom: 1px solid #999;
}
.salon05 .list01 > .item:nth-child(even) > .block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.salon05 .list01 > .item.-bdnone {
  border-bottom: none;
}
.salon05 .block_txt {
  padding: 20px 40px 0;
}
.salon05 .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
  line-height: 130%;
}
.salon05 .headin {
  margin-left: 20px;
  font-size: 16px;
}
.salon05 .list02 .item {
  margin-bottom: 10px;
}
.salon05 .list02 .item01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.salon05 .list02 .item02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.salon05 .list02 .item02 .datattl {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.salon05 .list02 .item03 {
  margin-top: 20px;
}
.salon05 .list02 .datattl,
.salon05 .list02 .data {
  font-family: 'Sawarabi Mincho', sans-serif;
}
.salon05 .list02 .datattl01 {
  margin-right: 20px;
}
.salon05 .list02 .datattl01:after {
  content: ':';
}
.salon05 .list02 .datattl03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  width: 100%;
}
.salon05 .list02 .datattl03:after {
  display: block;
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  margin-left: 10px;
  width: auto;
  height: 1px;
  background: #000;
  content: '';
}
.salon05 .list02 .data03 {
  padding-bottom: 30px;
  width: 100%;
  border-bottom: 1px solid #000;
  line-height: 250%;
}
@media only screen and (max-width: 1024px) {
  .salon05 .head {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .salon05 .headin {
    margin-left: 0;
    width: 100%;
  }
  .salon05 .headin01 {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .salon05 .block_txt {
    padding: 10px;
  }
  .salon05 .list02 .item02 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .salon05 .list02 .data02 {
    margin-top: 5px;
    width: 100%;
  }
}
/*メニュー*/
.tab_nav {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  max-width: 100%;
}
.tab_nav .item {
  margin-right: 2px;
  padding: 10px;
  width: 250px;
  border: 1px solid #eee;
  border-bottom: 1px solid transparent;
  background: #eee;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.tab_nav .item01.on {
  border-color: #fcf2e0;
  background: #fcf2e0;
}
.tab_nav .item02.on {
  border-color: #fff5ff;
  background: #fff5ff;
}
.tab_nav .item03.on {
  background: #fff;
}
@media only screen and (max-width: 599px) {
  .tab_nav .item {
    padding: 5px;
    font-size: 18px;
  }
}
.tab_area {
  position: relative;
  top: -1px;
  z-index: 1;
}
.tab_area .tab_box {
  padding: 50px;
  border: 1px solid #fff;
}
.tab_area .menu_hair {
  border-color: #fcf2e0;
  background: #fcf2e0;
}
.tab_area .menu_eyelash {
  border-color: #fff5ff;
  background: #fff5ff;
}
.tab_area .menu_whitening {
  border-color: #eee;
}
.tab_area .block_txt01 {
  margin-bottom: 50px;
  padding: 20px 30px;
  border: 1px solid #999;
  background: #fff;
  font-family: 'Sawarabi Mincho', sans-serif;
}
@media only screen and (max-width: 599px) {
  .tab_area .tab_box {
    padding: 20px;
  }
  .tab_area .block_txt01 {
    padding: 20px 10px;
  }
}
.list_menu > .item {
  margin-bottom: 100px;
}
.list_menu > .item:nth-child(odd) .block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.list_menu .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  font-size: 30px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.list_menu .head:before {
  display: block;
  margin-right: 10px;
  width: 30px;
  height: 1px;
  background: #000;
  content: '';
}
.list_menu .head.-small {
  font-size: 16px;
}
@media only screen and (max-width: 599px) {
  .list_menu > .item {
    margin-bottom: 50px;
  }
  .list_menu .head {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
.menu01box {
  margin: 50px auto 0;
  width: 80%;
}
.menu01box .txt {
  margin-bottom: 20px;
}
.menu01box .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #999;
}
.menu01box .item {
  margin: 20px;
}
@media only screen and (max-width: 599px) {
  .menu01box {
    width: 100%;
  }
}
/*ホワイトニング*/
/*コンセプト（トップ）*/
.white01 .block_txt {
  padding-bottom: 50px;
}
.white01 .img02 {
  margin: -40px auto 0;
  width: 50%;
}
@media only screen and (max-width: 599px) {
  .white01 .block_txt {
    padding-bottom: 0;
  }
  .white01 .img02 {
    margin: 0 0 0 auto;
  }
}
.white02 .box {
  position: relative;
}
.white02 .box .img {
  width: calc(50% + 300px);
  height: 400px;
}
.white02 .box .inner {
  position: absolute;
  top: 0;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.white02 .ttl {
  letter-spacing: 0.1em;
  font-size: 36px;
  font-family: 'Sawarabi Mincho', sans-serif;
  line-height: 130%;
}
.white02 .ttlin01 {
  font-size: 18px;
}
.white02 .ttlin02 {
  position: relative;
  display: block;
  padding-left: 50px;
}
.white02 .ttlin02:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 1px;
  background: #000;
  content: '';
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .white02 .box .img {
    width: 80%;
    height: 300px;
  }
  .white02 .box .block_txt {
    margin-top: -50px;
    width: 70%;
  }
  .white02 .ttl {
    text-shadow: 1px 0 3px #fff, 0 1px 3px #fff, -1px 0 3px #fff, 0 -1px 3px #fff;
  }
}
@media only screen and (max-width: 599px) {
  .white02 .box .img {
    max-width: 500px;
    width: 70%;
    height: 150px;
  }
  .white02 .box .block_txt {
    margin-top: 20px;
    padding-right: 10px;
    width: 100%;
  }
  .white02 .ttl {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.list_white02 {
  counter-reset: item;
}
.list_white02 .img {
  margin-bottom: 10px;
}
.list_white02 .head {
  position: relative;
  margin-bottom: 5px;
  padding-left: 50px;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.list_white02 .head:before {
  position: relative;
  content: counter(item) '.';
  counter-increment: item;
}
.list_white02 .head:after {
  position: absolute;
  top: 22px;
  left: 0;
  display: block;
  width: 30px;
  height: 1px;
  background: #000;
  content: '';
}
@media only screen and (max-width: 599px) {
  .list_white02 .head {
    padding-left: 40px;
    font-size: 20px;
  }
  .list_white02 .head:after {
    top: 18px;
  }
}
.white03 .box {
  position: relative;
  z-index: 1;
  padding: 50px 0 0;
}
.white03 .img {
  position: absolute;
  z-index: -1;
  width: calc(50% - 300px);
  height: 400px;
}
.white03 .img01 {
  top: 0;
  left: 0;
}
.white03 .img02 {
  top: 100px;
  right: 0;
}
.white03 .inner {
  padding: 50px 10px;
  max-width: 840px;
  background: #fff;
}
.white03 .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .white03 .img {
    width: 40%;
    height: 300px;
  }
  .white03 .inner {
    padding: 20px;
    max-width: 700px;
    background: rgba(255,255,255,0.9);
  }
}
@media only screen and (max-width: 599px) {
  .white03 .img {
    width: 80%;
  }
  .white03 .img02 {
    top: inherit;
    bottom: 0;
  }
  .white03 .inner {
    padding: 20px 5px;
  }
}
.list_white03 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.list_white03 .item01 {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.list_white03 .datattl01 {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 20px 40px 20px 0;
  width: 130px;
  text-align: right;
  font-weight: bold;
}
.list_white03 .datattl01:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 30px;
  height: 1px;
  background: #000;
  content: '';
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.list_white03 .datattl02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 60px;
  background: #e5e5e5;
  vertical-align: bottom;
  font-weight: normal;
  font-size: 18px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.list_white03 .datattl02.-point {
  height: 80px;
  background: #fff799;
  vertical-align: middle;
}
.list_white03 .datattl02:first-child {
  margin-right: 2px;
}
.list_white03 .datattl02:last-child {
  margin-left: 2px;
}
.list_white03 .datawrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
  width: 100%;
}
.list_white03 .datawrap01 {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.list_white03 .data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  min-height: 70px;
  width: 50%;
  border-bottom: 1px solid #999;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .list_white03 {
    padding: 5px;
    -webkit-box-shadow: inset -4px 0 5px -5px #000;
            box-shadow: inset -4px 0 5px -5px #000;
  }
  .list_white03 .listwrap {
    overflow: auto;
  }
  .list_white03 .item {
    min-width: 500px;
  }
  .list_white03 .datattl01 {
    padding-right: 0;
    width: 100px;
  }
  .list_white03 .datattl01:after {
    content: none;
  }
  .list_white03 .datattl02 {
    font-size: 16px;
  }
}
.list_white04 {
  counter-reset: item;
}
.list_white04 .item:nth-child(3n-1) {
  margin-top: 30px;
}
.list_white04 .item:nth-child(3n) {
  margin-top: 60px;
}
.list_white04 .img {
  margin-bottom: 10px;
}
.list_white04 .head {
  position: relative;
  margin-bottom: 5px;
  padding-left: 50px;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.list_white04 .head:before {
  position: relative;
  content: counter(item) '.';
  counter-increment: item;
}
.list_white04 .head:after {
  position: absolute;
  top: 22px;
  left: 0;
  display: block;
  width: 30px;
  height: 1px;
  background: #000;
  content: '';
}
@media only screen and (max-width: 1024px) {
  .list_white04 .head {
    padding-left: 30px;
    font-size: 18px;
  }
  .list_white04 .head:after {
    top: 15px;
    width: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .list_white04 .item:nth-child(3n-1) {
    margin-top: 0;
  }
  .list_white04 .item:nth-child(3n) {
    margin-top: 0;
  }
}
.white05 .block02 {
  position: relative;
  z-index: 1;
  padding: 20px 0 20px 30px;
}
.white05 .block02:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  background: #eee;
  content: '';
}
.white05 .block02.-left {
  padding: 20px 30px 20px 0;
}
.white05 .block02.-left:before {
  right: 0;
  left: inherit;
}
.white05 .block_img01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.white05 .block_img01 .img {
  width: 33.333%;
}
.white05 .block_img01 .img:first-child {
  margin-right: -40px;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: 80% bottom;
      -ms-transform-origin: 80% bottom;
          transform-origin: 80% bottom;
}
.white05 .block_img01 .img:last-child {
  margin-left: -40px;
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: 20% bottom;
      -ms-transform-origin: 20% bottom;
          transform-origin: 20% bottom;
}
.white05 .block_img02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.white05 .block_img02 .img {
  margin: 10px;
}
.white05 .block_img02 .img:first-child {
  width: 25%;
}
.white05 .block_img02 .img:last-child {
  width: 40%;
}
.white05 .block_img03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.white05 .block_img03 .img {
  margin: 10px;
  width: 25%;
}
.white05 .block_img04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.white05 .block_img04 .img {
  width: 40%;
}
.white05 .block_img04 .img:first-child {
  margin-right: -20px;
  -webkit-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-transform-origin: 80% bottom;
      -ms-transform-origin: 80% bottom;
          transform-origin: 80% bottom;
}
.white05 .block_img04 .img:last-child {
  margin-left: -20px;
  -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transform-origin: 20% bottom;
      -ms-transform-origin: 20% bottom;
          transform-origin: 20% bottom;
}
.white05 .block_img05 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.white05 .block_img05 .img {
  margin: 10px;
}
.white05 .block_img05 .img:first-child,
.white05 .block_img05 .img:nth-child(2) {
  width: 25%;
}
.white05 .block_img05 .img:last-child {
  width: 50%;
}
.white05 .txt01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
}
.white05 .txt01:before,
.white05 .txt01:after {
  display: block;
  width: 1px;
  height: 40px;
  background: #000;
  content: '';
}
.white05 .txt01:before {
  margin-right: 20px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.white05 .txt01:after {
  margin-left: 20px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.white05 .txt02 {
  margin: 30px auto 0;
  padding: 30px;
  width: 80%;
  border: 1px solid #999;
  text-align: center;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
@media only screen and (max-width: 599px) {
  .white05 .block01 {
    margin-bottom: 40px;
  }
  .white05 .block02 {
    padding: 20px 10px;
  }
  .white05 .block_img03 .img {
    margin: 5px;
  }
  .white05 .block_img05 .img {
    margin: 5px;
  }
  .white05 .txt01 {
    font-size: 14px;
  }
  .white05 .txt02 {
    padding: 10px;
    width: 100%;
    font-size: 20px;
  }
}
/*リクルート*/
.recruit00 {
  position: relative;
}
.recruit00 .img {
  max-height: 700px;
}
.recruit00 .inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit00 .logo {
  margin-bottom: 10px;
}
.recruit00 .ttl {
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 48px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
  text-align: center;
}
.recruit00 .txt {
  color: #fff;
  font-family: 'Sawarabi Mincho', sans-serif;
  letter-spacing: 0.2em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .recruit00 .img {
    min-height: 400px;
  }
  .recruit00 .logo img {
    height: 60px;
  }
  .recruit00 .ttl {
    font-size: 36px;
  }
}
@media only screen and (max-width: 599px) {
  .recruit00 .img {
    min-height: 300px;
  }
  .recruit00 .logo img {
    height: 40px;
  }
  .recruit00 .ttl {
    font-size: 28px;
  }
}
.list_recruit01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list_recruit01 a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: 1px solid #000;
  padding: 30px;
}
.list_recruit01 a:after {
  content: ">";
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.list_recruit01 .img {
  width: 70px;
  margin-right: 30px;
}
.list_recruit01 .head {
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 18px;
  line-height: 150%;
}
.list_recruit01 .headin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}
.list_recruit01 .headin:before {
  content: "";
  display: block;
  background: #000;
  width: 20px;
  height: 1px;
  margin-right: 10px;
  position: relative;
  top: 15px;
}
@media only screen and (max-width: 599px) {
  .list_recruit01 .img {
    width: 50px;
  }
  .list_recruit01 .head {
    font-size: 16px;
  }
}
.recruit03 .block_img {
  width: 48%;
  margin: 0 auto 5%;
}
.recruit03 .block_txt {
  width: 48%;
  margin: 0 auto 5%;
}
@media only screen and (max-width: 1024px) {
  .recruit03 .block_img {
    width: 70%;
  }
  .recruit03 .block_txt {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .recruit03 .block_img {
    width: 100%;
  }
}
.recruit04 {
  position: relative;
  z-index: 1;
}
.recruit04:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: calc(100% - 150px);
  width: 100%;
  background: #fff2d8;
  z-index: -1;
}
.list_recruit04 .head {
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 30px;
  margin-bottom: -25px;
  position: relative;
  z-index: 1;
  text-align: right;
  text-shadow: -1px 1px 0 #fff;
  letter-spacing: 0.2em;
}
.list_recruit04 .img {
  width: 90%;
}
.list_recruit04 .block_txt {
  background: #fff;
  margin-top: -15%;
  padding: 20px;
  position: relative;
  z-index: 1;
  width: 80%;
  margin-left: auto;
  border: 1px solid #ccc;
}
.list_recruit04 .list .item {
  padding-left: 20px;
  position: relative;
}
.list_recruit04 .list .item:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 1px;
}
.list_recruit04 .btn {
  margin-top: 20px;
}
.list_recruit04.-type01 .head {
  text-align: left;
}
.list_recruit04.-type01 .block_txt {
  background: rgba(255,255,255,0.8);
  border: none;
  margin-top: -10%;
}
@media only screen and (max-width: 1024px) {
  .list_recruit04 .block_txt {
    width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .list_recruit04 .head {
    font-size: 24px;
    margin-bottom: -20px;
  }
}
.recruit06 {
  position: relative;
  z-index: 1;
}
.recruit06 .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.recruit06 .img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
.recruit06 .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruit06 .ttl {
  color: #fff;
  width: 30%;
  font-size: 48px;
  line-height: 130%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.recruit06 .ttl .ttlin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Sawarabi Mincho', sans-serif;
  letter-spacing: 0.1em;
}
.recruit06 .ttl .ttlin:before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-right: 10px;
}
.recruit06 .block_txt {
  padding-top: 20px;
  max-width: 60%;
  margin-left: auto;
}
.recruit06 .head {
  color: #fff;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.recruit06 .txt {
  color: #fff;
}
.recruit06 .btn {
  margin-top: 30px;
}
.recruit06 .btn_txt {
  color: #fff;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .recruit06 .block {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .recruit06 .ttl {
    font-size: 36px;
    width: 100%;
  }
  .recruit06 .ttl img {
    height: 60px;
  }
  .recruit06 .block_txt {
    max-width: none;
  }
}
/*スタイリスト・アシスタント*/
.list_stylist02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  counter-reset: item;
}
.list_stylist02 .item {
  width: 25%;
  padding: 0 1px;
}
.list_stylist02 .block_txt {
  background: #ffbf3a;
  padding: 20px 10px;
}
.list_stylist02 .head {
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.list_stylist02 .head:before {
  content: "";
  display: block;
  background: #fff;
  height: 1px;
  width: 20px;
  margin-right: 10px;
}
.list_stylist02 .head:after {
  counter-increment: item;
  content: "." counter(item);
}
.list_stylist02 .txt {
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.list_stylist02.-blue .block_txt {
  background: #009dbf;
}
@media only screen and (max-width: 1024px) {
  .list_stylist02 .item {
    width: 50%;
  }
}
@media only screen and (max-width: 599px) {
  .list_stylist02 .item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.stylist03 .point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.stylist03 .head {
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}
.stylist03 .head:after {
  content: url(/import/tenant_1/160.16.122.97/html/images/09recruit_design/icon01.png);
  margin-left: 10px;
}
@media only screen and (max-width: 599px) {
  .stylist03 .point {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.list_stylist03a {
  width: 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.list_stylist03a .item {
  background: #89c997;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 10em;
  color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
.list_stylist03a.-orange .item {
  background: #f7e39b;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .list_stylist03a {
    width: 80%;
  }
}
@media only screen and (max-width: 599px) {
  .list_stylist03a {
    width: 100%;
  }
}
.list_stylist03b .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
}
.list_stylist03b .item:first-child {
  border-top: 1px solid #bfbfbf;
}
.list_stylist03b .datattl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  padding: 10px;
  border-right: 1px solid #bfbfbf;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-align: center;
}
.list_stylist03b .data {
  padding: 10px 20px 10px 60px;
}
@media only screen and (max-width: 1024px) {
  .list_stylist03b .datattl {
    width: 200px;
  }
  .list_stylist03b .data {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .list_stylist03b .item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .list_stylist03b .datattl {
    border-right: none;
    text-align: left;
    display: block;
    font-weight: bold;
  }
  .list_stylist03b .data {
    padding-left: 10px;
    padding-top: 0;
    width: 100%;
  }
}
.list_stylist04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.list_stylist04 .item {
  width: 25%;
  position: relative;
  overflow: hidden;
}
.list_stylist04 .item:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  content: "";
  border-left: 50px solid #f8f4e6;
  border-top: 100px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid transparent;
}
.list_stylist04 .itemin {
  background: #f8f4e6;
  width: calc(100% - 50px);
  padding: 20px 0 20px 20px;
}
.list_stylist04 .head {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}
.list_stylist04.-green .item:after {
  border-left: 50px solid #dbe87f;
}
.list_stylist04.-green .itemin {
  background: #dbe87f;
}
@media only screen and (max-width: 1024px) {
  .list_stylist04 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .list_stylist04 .item {
    width: 50%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 599px) {
  .list_stylist04 .item {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 10px;
  }
  .list_stylist04 .itemin {
    padding: 10px 0 10px 10px;
  }
  .list_stylist04 .head {
    font-size: 18px;
  }
}
.stylist05 .inner {
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}
.stylist05 .ttl {
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.stylist05 .ttl:before {
  content: "";
  display: block;
  background: #000;
  height: 1px;
  width: 20px;
  margin-right: 10px;
}
.stylist05 .ttl:after {
  content: "";
  display: block;
  background: #000;
  height: 1px;
  width: 20px;
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  margin-right: 10px;
}
.stylist05 .ttl.-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stylist05 .ttl.-center:before {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}
@media only screen and (max-width: 599px) {
  .stylist05 .ttl {
    font-size: 20px;
  }
}
.list_stylist05 {
  counter-reset: item;
}
.list_stylist05 .item {
  margin-bottom: 30px;
}
.list_stylist05 .item:nth-child(even) {
  padding-left: 70px;
}
.list_stylist05 .head {
  position: relative;
  padding-left: 50px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.list_stylist05 .head:before {
  content: "0" counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  font-size: 28px;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-weight: 400;
}
.list_stylist05 .txt {
  padding-left: 50px;
}
@media only screen and (max-width: 1024px) {
  .list_stylist05 .item:nth-child(even) {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .list_stylist05 .item:nth-child(even) {
    padding-left: 20px;
  }
  .list_stylist05 .head {
    font-size: 16px;
    padding-left: 40px;
  }
  .list_stylist05 .head:before {
    font-size: 24px;
  }
  .list_stylist05 .txt {
    padding-left: 40px;
  }
}
.stylist06 .img {
  overflow: auto;
}
.stylist06 .img img {
  min-width: 600px;
}
.list_stylist07a > .item {
  margin-bottom: 50px;
}
.list_stylist07a > .item:nth-child(even) .block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.list_stylist07a .block_img,
.list_stylist07a .block_txt {
  width: 48%;
}
.list_stylist07a .block_txt {
  padding-top: 30px;
}
.list_stylist07a .head {
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
}
.list_stylist07a .head:before {
  content: "";
  display: block;
  background: #000;
  left: 0;
  width: 20px;
  height: 1px;
  margin-right: 10px;
  top: 14px;
  position: absolute;
}
.list_stylist07a .headin {
  display: inline-block;
  margin-left: 100px;
}
@media only screen and (max-width: 1024px) {
  .list_stylist07a .block_img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .list_stylist07a .block_txt {
    width: 100%;
  }
  .list_stylist07a .headin {
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .list_stylist07a .block_img {
    max-width: 300px;
  }
}
.list_stylist07b .item {
  margin-bottom: 30px;
}
.list_stylist07b .datattl {
  padding-left: 20px;
  position: relative;
  color: #ffbf3a;
  margin-bottom: 10px;
}
.list_stylist07b .datattl:before {
  content: "Q.";
  position: absolute;
  left: 0;
}
.list_stylist07b .data {
  position: relative;
  padding-left: 40px;
}
.list_stylist07b .data:before {
  content: "A.";
  left: 20px;
  position: absolute;
}
.list_stylist07b.-blue .datattl {
  color: #009dbf;
}
@media only screen and (max-width: 599px) {
  .list_stylist07b .item {
    margin-bottom: 20px;
  }
  .list_stylist07b .datattl {
    margin-bottom: 5px;
  }
}
.list_stylist08 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.list_stylist08 .item {
  width: 33.333%;
  position: relative;
  overflow: hidden;
}
.list_stylist08 .item:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  content: "";
  border-left: 20px solid #eee;
  border-top: 50px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 50px solid transparent;
}
.list_stylist08 .item:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  border: 20px solid #fff;
  border-top: 50px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 50px solid transparent;
}
.list_stylist08 .item:first-child:before {
  content: none;
}
.list_stylist08 .item.now:after {
  border-left: 20px solid #ffbf3a;
}
.list_stylist08 .item.now .itemin {
  background: #ffbf3a;
}
.list_stylist08 .item.now .head {
  color: #fff;
}
.list_stylist08 .itemin {
  background: #eee;
  width: calc(100% - 20px);
  padding: 15px 0 15px 20px;
}
.list_stylist08 .head {
  text-align: center;
  font-size: 18px;
}
.list_stylist08.-blue .item.now:after {
  border-left: 20px solid #009dbf;
}
.list_stylist08.-blue .item.now .itemin {
  background: #009dbf;
}
@media only screen and (max-width: 599px) {
  .list_stylist08 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .list_stylist08 .item {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 10px;
  }
  .list_stylist08 .item:before {
    content: none;
  }
  .list_stylist08 .itemin {
    padding: 10px 0 10px 10px;
  }
  .list_stylist08 .head {
    font-size: 18px;
  }
}
/*スタイル*/
.list_style01 .item a {
  display: block;
  margin: 0 10px 10px;
  padding: 10px;
  width: 200px;
  border: 1px solid #999;
  text-align: center;
  font-size: 28px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
@media only screen and (max-width: 1024px) {
  .list_style01 .item a {
    width: 150px;
    font-size: 20px;
  }
}
.list_style02 .item {
  padding: 10px;
  width: 33.333%;
}
.list_style02 .itemin {
  position: relative;
}
.list_style02 .img a {
  display: block;
}
.list_style02 .block_txt {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.list_style02 .name {
  margin-bottom: 10px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.list_style02 .position {
  display: inline-block;
  margin-left: 5px;
}
.list_style02 .position:before {
  margin-right: 5px;
  content: '/';
}
.list_style02 .head {
  margin-bottom: 10px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.list_style02 .btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.list_style02 .item:hover .block_txt {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}
.list_style02.-recommend .item {
  width: 25%;
}
@media only screen and (max-width: 1024px) {
  .list_style02 .block_txt {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .list_style02 .item {
    width: 50%;
  }
  .list_style02.-recommend .item {
    width: 50%;
  }
}
/*スタイル詳細*/
.styledtl01 .block_left {
  width: 50%;
}
.styledtl01 .block_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  padding-left: 20px;
  width: 50%;
}
.styledtl01 .block_txt01 {
  width: 100%;
  border-bottom: 1px solid #000;
}
.styledtl01 .block_txt01 .btn {
  margin: 30px auto;
  width: 300px;
}
.styledtl01 .block_staff {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.styledtl01 .block_staff .img {
  width: 120px;
}
.styledtl01 .block_txt02 {
  padding-left: 20px;
}
.styledtl01 .position {
  margin-bottom: 5px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.styledtl01 .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
  line-height: 130%;
}
.styledtl01 .namein01 {
  margin-right: 30px;
}
.styledtl01 .namein02 {
  display: inline-block;
  font-size: 14px;
}
.styledtl01 .block_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  width: 100%;
}
.styledtl01 .block_img .img {
  width: 33.333%;
}
.styledtl01 .block_img .img:nth-child(2) {
  margin: 0 10px;
}
.styledtl01 .ttl {
  margin-bottom: 30px;
  font-size: 24px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.styledtl01 .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.styledtl01 .head:after {
  display: block;
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  margin-left: 20px;
  width: 100px;
  height: 1px;
  background: #000;
  content: '';
}
.styledtl01 .comment {
  margin-bottom: 20px;
}
.styledtl01 .btn_wrap {
  margin-top: 80px;
}
@media only screen and (max-width: 1024px) {
  .styledtl01 .block_left {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }
  .styledtl01 .block_right {
    padding-left: 0;
    width: 100%;
  }
  .styledtl01 .block_txt01 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .styledtl01 .block_img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin: 10px auto;
    max-width: 500px;
  }
  .styledtl01 .ttl {
    margin-bottom: 20px;
  }
  .styledtl01 .btn_wrap {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 599px) {
  .styledtl01 .block_left {
    max-width: 350px;
  }
  .styledtl01 .block_img {
    max-width: 350px;
  }
}
/*お知らせ*/
.list_news01 .item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #999;
}
.list_news01 .meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.list_news01 .time {
  margin-right: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.list_news01 .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.list_news01 .category li {
  margin: 0 5px 2px 0;
  padding: 0 5px;
  background: #f7e39b;
}
.list_news01 .head a {
  font-size: 18px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
@media only screen and (max-width: 599px) {
  .list_news01 .meta {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .list_news01 .time {
    margin-bottom: 5px;
    width: 100%;
  }
}
/*ブログ*/
.list_blog01 .img {
  margin-bottom: 5px;
}
.list_blog01 .img a {
  display: block;
}
.list_blog01 .meta {
  margin-bottom: 10px;
}
.list_blog01 .time {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.list_blog01 .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.list_blog01 .category li {
  margin: 0 5px 2px 0;
  padding: 0 5px;
  background: #f7e39b;
}
.list_blog01 .head a {
  font-family: 'Sawarabi Mincho', sans-serif;
}
/*記事詳細*/
.articledtl01 .meta {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.articledtl01 .time {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-right: 20px;
}
.articledtl01 .category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.articledtl01 .category li {
  margin: 0 5px 2px 0;
  padding: 0 5px;
  background: #f7e39b;
}
.articledtl01 .head {
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}
.articledtl01 .txt {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 40px 0;
}
.articledtl01 .btn_wrap {
  margin-top: 50px;
}
/*プライバシーポリシー*/
.list_policy01 .item {
  margin-bottom: 50px;
}
.list_policy01 .datattl {
  font-size: 18px;
  font-family: 'Sawarabi Mincho', sans-serif;
  border-bottom: 1px solid #b06f3f;
  margin-bottom: 15px;
}
@-webkit-keyframes opening {
  0% {
    background-position: -20% 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    background-position: 120% 0%;
    opacity: 1;
  }
}
@keyframes opening {
  0% {
    background-position: -20% 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    background-position: 120% 0%;
    opacity: 1;
  }
}
@-webkit-keyframes opening_ie {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opening_ie {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mask {
  0% {
    -webkit-mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
  }
}
@keyframes mask {
  0% {
    -webkit-mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
  }
}
@-webkit-keyframes mainimg {
  0% {
    -webkit-transform: scale(1.2) translate3d(8%, 0, 0);
            transform: scale(1.2) translate3d(8%, 0, 0);
  }
  100% {
    -webkit-transform: scale(1.2) translate3d(-8%, 0, 0);
            transform: scale(1.2) translate3d(-8%, 0, 0);
  }
}
@keyframes mainimg {
  0% {
    -webkit-transform: scale(1.2) translate3d(8%, 0, 0);
            transform: scale(1.2) translate3d(8%, 0, 0);
  }
  100% {
    -webkit-transform: scale(1.2) translate3d(-8%, 0, 0);
            transform: scale(1.2) translate3d(-8%, 0, 0);
  }
}

/*# sourceMappingURL=common.css.map */


/* 2023/10/27 */
[data-element-id].homevisual .address {
    bottom: 100px;
    position: absolute!important;
}
