@charset "utf-8";
/*===================================
  基本設定
===================================*/

/* 共通コンテンツ間隔 */
.area {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 599px) {
  .area {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/* 共通要素読み込みコメント（取り込み後削除） */
[class*='load-'] {
  position: relative;
  min-height: 50px;
  border: 3px solid #00bcd4;
}
[class*='load-']:before {
  position: absolute;
  z-index: 100;
  display: block;
  background: #00bcd4;
  color: #ff0;
  content: '共通要素';
  text-align: center;
  font-weight: bold;
}
/*===================================
  共通ブロック　block-cmn
==================================*/
/* 共通ブロック１ */
/*===================================
  共通タイトル　ttl-cmn
===================================*/
/* 共通タイトル１ */
.ttl-cmn01 {
  text-align: center;
  font-size: 28px;
}
@media (max-width: 599px) {
  .ttl-cmn01 {
    font-size: 24px;
  }
}
/*===================================
  共通リスト　list-cmn
==================================*/
/* 共通リスト１ */
/*===================================
  共通ボタン btn-cmn
===================================*/
/* 共通ボタン１ */
.btn-cmn01 {
  max-width: 180px;
  margin-top: 50px;
}
.btn-cmn01 a {
  display: block;
  padding: 5px 20px;
  background: #000;
  color: #fff;
  text-align: center;
  position: relative;
}
.btn-cmn01 a:after {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f054";
  font-weight: 600;
  font-family: 'Font Awesome 5 Free';
}
.btn-cmn01.btn-back a:after {
  content: "\f053";
  right: inherit;
  left: 5px;
}
/*===================================
  他共通エレメント -cmn
===================================*/
/*===================================
  共通要素
===================================*/
/*h1ページタイトル */
.pagettl {
  font-size: 12px;
  padding: 0 5px;
}
/**
ヘッダー
header
*/
.header {
  padding: 10px 0 0;
}
.header .contents {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}
.header .logo img {
  max-height: 50px;
}
.header .right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.header .right .txt {
  margin-right: 10px;
  line-height: 120%;
}
.header .right .txtin {
  display: block;
}
.header .right .tel a {
  font-weight: bold;
  font-size: 30px;
}
.header .right .tel a:before {
  margin-right: 5px;
  content: '\f879';
  font-weight: 600;
  font-size: 24px;
  font-family: 'Font Awesome 5 Free';
}
@media (max-width: 1024px) {
  .header {
    padding: 5px 0;
  }
  .header .logo img {
    max-height: 32px;
  }
  .header .right {
    display: none;
  }
}
/**
グローバルナビ
gnav
*/
.gnav {
  position: relative;
  z-index: 100;
}
.gnav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: auto;
  background: #fff;
  box-shadow: 0 0 5px 0 #999;
  cursor: pointer;
}
.gnav .wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 30px 0;
}
.gnav .navlogo {
  display: none;
}
.gnav .navlogo img {
  max-height: 40px;
}
.gnav .list01 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.gnav .item01 {
  text-align: center;
  font-size: 18px;
}
.gnav .item01 > a,
.gnav .item01 .itemin {
  display: block;
  cursor: pointer;
  padding: 5px;
}
.gnav .item01.-parent {
  position: relative;
}
.gnav .item01.-parent:hover .list02 {
  visibility: visible;
  opacity: 1;
}
.gnav .list02 {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  padding-top: 10px;
  width: 230px;
  background: rgba(255,255,255,0.8) content-box;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.gnav .item02 a {
  display: block;
  padding: 5px;
  text-align: center;
  background: #c9c8dd;
  border: solid #fff 1px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .gnav .item02 a{
    background: none;
  }
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    overflow: auto;
    width: 100%;
    max-width: 300px;
    height: 100%;
    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 {
    z-index: 250;
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  .gnav .wrap {
    padding-bottom: 100px;
  }
  .gnav .navlogo {
    display: block;
    margin-bottom: 20px;
    padding-right: 40px;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
  }
  .gnav .item01 {
    margin: 0 0 10px 0;
    min-height: 40px;
    width: 100%;
    text-align: left;
  }
  .gnav .item01.fz-14{
    font-size: 14px;
    text-align: center;
  }
  .gnav .list02 {
    position: relative;
    top: 0;
    left: 0;
    visibility: visible;
    padding-left: 20px;
    padding-top: 0;
    background: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
  .gnav .list02 a {
    position: relative;
    padding: 2px 0 2px 20px;
  }
  .gnav .list02 a:before {
    position: absolute;
    top: 23px;
    left: 0;
    display: block;
    width: 10px;
    height: 1px;
    background: #000;
    content: '';
  }
}
[data-element-id] .gnav.fixed {
  position: relative;
}
/* ハンバーガーメニュー  */
.toggle {
  position: fixed !important;
  top: 0px;
  right: 0px;
  z-index: 251;
  width: 42px;
  height: 42px;
  background: #363681;
  opacity: 0.8;
  cursor: pointer;
  display: none;
}
.toggle .bar {
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -1px;
  padding: 0;
  width: 28px;
  height: 2px;
  background: #fff;
  text-indent: 9999px;
  transition: ease 0.4s;
  -webkit-transition: ease 0.4s;
}
.toggle .bar:before,
.toggle .bar:after {
  position: absolute;
  left: 0;
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  content: '';
}
.toggle .bar:before {
  top: -10px;
}
.toggle .bar:after {
  top: 10px;
}
.toggle.active .bar {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.toggle.active .bar:after,
.toggle.active .bar:before {
  top: 0;
  left: 0;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}
@media (max-width: 1024px) {
  .toggle {
    display: block !important;
  }
}
.overlay:after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 249;
  width: 100%;
  height: 100vh;
  background: #000;
  content: '';
  opacity: 0.3;
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}
/*トップへ戻る*/
.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  border-radius: 50%;
  background: #bcd400;
  color: #fff;
  text-align: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 26px;
}

@media (max-width: 1024px) {
  .totop {
    right: 10px;
    bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .totop {
    bottom: 60px;
  }
}
/**
フッター
footer
*/
.footer .copy {
  padding: 5px 0;
  background: #999;
  color: #fff;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer .copy {
    padding-bottom: 50px;
  }
}
/**
2カラムページ
*/
.column2 .inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.column2 .side {
  width: 200px;
}
.column2 .mainwrap {
  width: calc(100% - 250px);
}
@media (max-width: 1024px) {
  .column2 .inner {
    flex-wrap: wrap;
  }
  .column2 .side {
    -webkit-box-ordinal-group: 4;
            order: 3;
    margin-bottom: 50px;
    width: 100%;
  }
  .column2 .mainwrap {
    -webkit-box-ordinal-group: 3;
            order: 2;
    margin-bottom: 50px;
    width: 100%;
  }
}
/* サイドメニュー */
.side .list {
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .side {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    flex-wrap: wrap;
  }
  .side .list {
    width: 48%;
  }
}
@media (max-width: 599px) {
  .side .list {
    width: 100%;
  }
}
.list-side .datattl {
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 2em;
  background: #363581;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.list-side .data {
  margin-bottom: 10px;
  padding-left: 10px;
}
.list-side a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.list-side a:before {
  position: absolute;
  left: 0;
  color: #363581;
  content: '>';
}
@media (max-width: 1024px) {
  .list-side.type-archive .datawrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .list-side.type-archive .datawrap .datattl {
    width: 100%;
  }
  .list-side.type-archive .datawrap .data {
    width: 48%;
  }
}
/*===================================
  各個別コンテンツ
===================================*/
/**
トップ
*/
/*ホームビジュアル（トップ）*/
.homevisual {
  position: relative;
  overflow: hidden;
}
.homevisual .img {
  position: relative;
  min-height: 300px;
  max-height: 700px;
}
.homevisual .img:before {
  position: relative;
  z-index: -1;
  display: block;
  padding-top: 55%;
  content: '';
}
.homevisual .img 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対策*/
.homevisual .head {
  position: absolute !important;
  top: 50%;
  left: 50%;
  font-weight: bold;
  font-size: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 599px) {
  .s-cnew .list-side .data{
    width: 30%;
  }
  .homevisual .head {
    font-size: 28px;
  }
}
/* A-BiSUスライダー用 */
.mainimg {
  position: relative;
  overflow: hidden;
}
.mainimg img {
  width: 100%;
}
.mainimg .uk-slidenav-position {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.mainimg .uk-slidenav-position:after {
  display: block;
  padding-top: 50%;
  content: '';
}
.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%;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
/*IE対策*/
/* スリックスライダー（トップ） */
.slick01 {
  padding: 0 20px;
}
.slick01.slick-dotted {
  margin-bottom: 50px;
}
.slick01 .btn-slick {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
}
.slick01 .btn-slick.btn-back {
  left: 0;
}
.slick01 .btn-slick.btn-next {
  right: 0;
}
.slick01 .slick-dots {
  bottom: -40px;
  left: 0;
}
@media (max-width: 599px) {
  .slick01 {
    padding: 0 10px;
  }
  .slick01 .btn-slick {
    font-size: 20px;
  }
}
/**
下層共通
*/
/* トップビジュアル（下層共通） */
.topvisual {
  position: relative;
}
.topvisual .img {
  position: relative;
  min-height: 200px;
  max-height: 400px;
}
.topvisual .img:before {
  position: relative;
  z-index: -1;
  display: block;
  padding-top: 30%;
  content: '';
}
.topvisual .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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%;
}
.topvisual .head {
  position: absolute !important;
  width: 96%;
  max-width: 1000px;
  text-align: center;
  top: 50%;
  left: 50%;
  font-weight: bold;
  font-size: 34px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 599px) {
  .topvisual .head {
    font-size: 24px;
  }
}
/* パンくずリスト */
.breadcrumb {
  margin-top: 10px;
}
.breadcrumb .item {
  display: inline-block;
}
.breadcrumb .item:not(:last-of-type):after {
  content: '\f054';
  font-weight: 600;
  font-family: 'Font Awesome 5 Free';
  display: inline-block;
  margin-right: 5px;
  margin-left: 10px;
}
.breadcrumb .home {
  color: #000;
}
.breadcrumb .now {
  color: #000;
}
/* ページネーション */
.pagenation {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.pagenation .item {
  margin: 0 10px;
}
.pagenation .prev {
  position: relative;
  margin-right: 20px;
}
.pagenation .prev a:before {
  content: "\f053";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
}
.pagenation .next {
  position: relative;
  margin-left: 20px;
}
.pagenation .next a:before {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
}
.pagenation a,
.pagenation .now {
  font-weight: bold;
}
.pagenation .number a,
.pagenation .now {
  display: block;
  padding: 2px 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #000;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
}
.pagenation .number a:hover,
.pagenation .now {
  background: #363581;
  color: #fff;
  opacity: 1;
}
@media (max-width: 599px) {
  .pagenation .item {
    margin: 0 5px;
  }
  .pagenation .prev {
    margin-right: 10px;
  }
  .pagenation .next {
    margin-left: 10px;
  }
}
/**
各下層ページ
*/
/* 記事一覧ページ */
.article .cate span {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0 5px;
  margin: 0 5px 2px 0px;
}
.list-article .cate .cate1 {
  background: #00f;
}
/* 記事詳細ページ */
.articledtl01 .cate span {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0 5px;
  margin: 0 5px 2px 0px;
}
.articledtl01 .cate .cate1 {
  background: #00f;
}
/* ギャラリー */
.list-gallery01 a {
  display: block;
  position: relative;
}
.list-gallery01 .img {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.list-gallery01 .block-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 10px;
  overflow: hidden;
  visibility: hidden;
}
.list-gallery01 .cate {
  font-size: 14px;
  margin-bottom: 5px;
}
.list-gallery01 .head {
  font-size: 18px;
}
.list-gallery01 a:hover {
  opacity: 1;
}
.list-gallery01 a:hover .img {
  opacity: 0.5;
}
.list-gallery01 a:hover .block-txt {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 599px) {
  .list-gallery01 .block-txt {
    display: none;
  }
  .list-gallery01 .head {
    font-size: 14px;
  }
}
/* ギャラリー詳細 */
.gallerydtl01 .thumbnail {
  cursor: pointer;
}
/* フォーム */
.form .box {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 0;
  border-bottom: 2px solid #999;
}
.form .datattl {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
  width: 200px;
  color: #000;
  font-weight: bold;
}
.form .require {
  display: inline-block;
  margin-left: 10px;
  padding: 0 4px;
  background: red;
  color: #fff;
  font-size: 14px;
  line-height: 1.6em;
}
.form .data {
  padding-left: 50px;
  width: 100%;
}
.form .data input {
  box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  width: 100%;
  border: 1px solid #999;
}
.form .data input[type='radio'] {
  display: none;
}
.form .data input[type='radio'] + label {
  position: relative;
  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: 10px;
  height: 10px;
  border: 1px solid #303841;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 1px 1px 0 1px #999;
  content: '';
}
.form .data input[type='radio']:checked + label::after {
  position: absolute;
  top: 7px;
  left: 3px;
  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 {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #999;
  color: inherit;
}
.form .data textarea {
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  height: 170px;
  border: 1px solid #999;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
.form .data01 div {
  display: inline-block;
}

@media (max-width: 1024px) {
  .form .item {
    flex-wrap: wrap;
  }
  .form .datattl {
    display: block;
    margin-bottom: 10px;
  }
  .form .data {
    padding-left: 0;
  }
}

/*# sourceMappingURL=style.css.map */

.nsans {
    font-family: 'Noto Sans', serif;
}

.nsansj {
    font-family: "Noto Sans Japanese", sans-serif;
}

.nserif {
    font-family: 'Noto Serif', serif;
}

.hannari {
    font-family: 'Hannari';
}

.mincho {
    font-family: "游明朝",
        YuMincho,
        "ヒラギノ明朝 ProN W3",
        "Hiragino Mincho ProN",
        "HG明朝",
        serif;
}

.arial {
    font-family: arial,
        sans-serif;
}

.galdeno {
    font-family: 'Galdeano',
        sans-serif;
}

@media all and (-ms-high-contrast:none) {

    body,
    div,
    dl,
    dt,
    dd,
    ul,
    ol,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    form,
    input,
    button,
    p {
        font-family: "Noto Sans Japanese", 'Noto Sans', sans-serif;
    }
}

/*フォント系*/

[data-element-id] h1 {
    position: initial;
    text-indent: initial;
}

h2 {
    font-size: 40px;
    font-weight: normal;
}

h3 {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    font-size: 34px;
    font-weight: bold;
}

h4 {
    font-size: 24px;
    font-weight: normal;
}

h5 {
    font-size: 18px;
    font-weight: normal;
}

.fs10 {
    font-size: 10px;
}

.fs12 {
    font-size: 12px;
}

.fs14 {
    font-size: 14px;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
}

.fs26 {
    font-size: 26px;
}

.fs28 {
    font-size: 28px;
}

.fs30 {
    font-size: 30px;
}

.fs32 {
    font-size: 32px;
}

.fs34 {
    font-size: 34px;
}

.fs36 {
    font-size: 36px;
}

.fs38 {
    font-size: 38px;
}

.fs40 {
    font-size: 40px;
}

.fs42 {
    font-size: 42px;
}

.fs44 {
    font-size: 44px;
}

.fs46 {
    font-size: 46px;
}

.fs48 {
    font-size: 48px;
}

.fs50 {
    font-size: 50px;
}

.bold {
    font-weight: bold;
}

.red {
    color: red;
}

.blue {
    color: blue;
}

.white {
    color: #fff;
}

/*クリアフィックス*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix:before {
    display: block;
    content: "";
    clear: both;
}

.clearfix {
    display: block;
}

.clear {
    clear: both;
}

.map {
    position: relative;
    overflow: hidden;
}

.map:after {
    display: block;
    content: "";
    padding-top: 35%;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: initial;
    width: 100%;
    height: 100%;
}

iframe {
    max-width: 100%;
}

img {
    vertical-align: top;
    border: none;
    max-width: 100% !important;
}

img:not([src*="."]) {
    display: none;
}

.scale {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.scale:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

[data-element-id] .filter:before,
[data-element-id] .filterT:before,
[data-element-id] .filterR:before,
[data-element-id] .filterB:before,
[data-element-id] .filterL:before,
[data-element-id] .filterRad:before {
    display: none;
}

.filter,
.filterT,
.filterR,
.filterB,
.filterL,
.filterRad {
    position: relative;
}

.filter:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(255, 255, 255, 0.6);
}

.filterT:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
}

.filterR:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
}

.filterB:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
}

.filterL:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
}

.filterRad:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 80%);
}

.lb-outerContainer {
    width: 80% !important;
    max-width: 400px !important;
    height: auto !important;
}

.lightbox .lb-image {
    width: 100% !important;
    height: auto !important;
    border: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: initial !important;
}

.pic {
    text-align: center;
    width: 100%;
}

.pic img {
    width: 100%;
}

.rp .pic {
    width: 35%;
}

.rp .tbox {
    width: 60%;
}

.bkimg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bkimg img {
    width: 100%;
    min-width: 1200px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

[data-element-id] .fead-mv {
    opacity: 1;
}

.fead-mv {
    opacity: 0;
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -ms-transition: 0.6s;
}

.mv {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    opacity: 0.6;
    color: inherit;
    text-decoration: none;
}

a[href*="tel"] {
    pointer-events: none;
}

a[data-href="#"] {
    border: solid red 5px;
    display: block;
    position: relative !important;
    opacity: 1;
}

a[data-href*="."] {
    border: solid red 5px;
    display: block;
    position: relative !important;
    opacity: 1;
}

a[data-href="#"]:hover:before {
    content: "リンクが設定されていない可能性があります。";
    position: absolute !important;
    width: 100%;
    min-width: 200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 100%;
    color: red;
    font-weight: bold;
    background: #555;
    padding: 5px;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a[data-href*="."]:hover:before {
    content: "外部リンクの可能性があります。リンクが飛ばない可能性がありますので注意してください。";
    position: absolute !important;
    width: 100%;
    min-width: 200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 100%;
    color: red;
    font-weight: bold;
    background: #555;
    padding: 5px;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tel a[data-href]:hover:before {
    content: "電話番号のリンクは自動的に設定されるので、リンク設定不要です。";
    position: absolute !important;
    width: 100%;
    min-width: 200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 100%;
    color: red;
    font-weight: bold;
    background: #555;
    padding: 5px;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[data-element-id][data-uk-slideshow]:hover:before {
    content: "※こちらは見たまま編集ができません。①画像をダブルクリック、②変更（歯車マーク）、③スライドショーから編集してください。";
    display: block;
    line-height: 1.8;
    font-weight: bold;
    color: red;
    clear: both;
    background: #4c4c4c;
    padding: 5px;
    text-align: left;
    position: absolute;
    letter-spacing: 1px;
    z-index: 1000;
    font-size: 12px;
    width: 100%;
}

[data-collection-list-content]:hover:before {
    content: "※こちらは見たまま編集ができません。①ページのどこかをダブルクリック、②左下（もしくは左上）のCMSロゴをクリック、③画面右上のメニュー（三本線マーク）から「カスタムコンテンツ管理」をクリック、④編集したいカスタムコンテンツの一覧（三本線マーク）から記事投稿・記事編集ができます。";
    display: block;
    line-height: 1.8;
    font-weight: bold;
    color: red;
    clear: both;
    background: #4c4c4c;
    padding: 5px;
    text-align: left;
    position: absolute;
    letter-spacing: 1px;
    z-index: 1000;
    font-size: 12px;
    width: 100%;
}

ul,
li {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

dl,
dt,
dd {
    text-align: left;
    padding: 0;
    margin: 0;
}

p {
    text-align: left;
}

/*トランスフォーム*/

.tfmp {
    position: relative;
}

.tfmx {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.tfmy {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.tfmxy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*トリミング*/

.trimmingInner {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*フレックス*/

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
}

.flexc.new{
  justify-content: flex-start;
}

.flexs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb {
    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;
}

.columnreverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.rowreverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*align-item*/

.itemstart {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.itemcenter {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.itemend {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/*align-content*/

.contentstart {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.contentcenter {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.contentend {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

/*align-self*/

.selfstart {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.selfcenter {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.selfend {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.flex>div[data-collection-list-content],
.flexc>div[data-collection-list-content],
.flexs>div[data-collection-list-content],
.flexb>div[data-collection-list-content] {
    width: 100%;
}

.flex>div[data-recommend-collection-list-content],
.flexc>div[data-recommend-collection-list-content],
.flexs>div[data-recommend-collection-list-content],
.flexb>div[data-recommend-collection-list-content] {
    width: 100%;
}

.flex>div[data-collection-filtered-content],
.flexc>div[data-collection-filtered-content],
.flexs>div[data-collection-filtered-content],
.flexb>div[data-collection-filtered-content] {
    width: 100%;
}

.flex>div[data-collection-archive-content],
.flexc>div[data-collection-archive-content],
.flexs>div[data-collection-archive-content],
.flexb>div[data-collection-archive-content] {
    width: 100%;
}

.flex>div[data-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
}

.flexs>div[data-collection-list-content] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-collection-list-content] {
    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;
}

.flex>div[data-recommend-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-recommend-collection-list-content] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
}

.flexs>div[data-recommend-collection-list-content] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-recommend-collection-list-content] {
    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;
}

.flex>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
}

.flexs>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-collection-filtered-content] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexsbox;
    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;
}

.flex>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexc>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -ms-flexsbox;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
}

.flexs>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexsbox;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexb>div[data-collection-archive-content] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexsbox;
    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;
}

/*カスタムコンテンツ用*/

.cc221 {
    width: 47%;
    margin-bottom: 4%;
}

.cc332 {
    width: 30%;
    margin-bottom: 4%;
}

.cc432 {
    width: 22%;
    margin-bottom: 4%;
}

.cc533 {
    width: 17%;
    margin-bottom: 4%;
}

/*横並び用*/

.gr211 {
    width: 47%;
    margin-bottom: 4%;
}

.gr321 {
    width: 30%;
    margin-bottom: 4%;
}

.gr422 {
    width: 22%;
    margin-bottom: 4%;
}

.gr532 {
    width: 17%;
    margin-bottom: 4%;
}

[data-element-id] #wrapper {
    opacity: 1;
}

#wrapper {
    overflow: hidden;
}

.inner {
    width: 92%;
    max-width: 1000px;
    margin: auto;
    padding: 60px 0;
}
.inner.new{
  padding: 0;
}

.subtit {
    position: relative;
    overflow: hidden;
}

.subtit h2 {
    text-align: center;
    width: 100%;
}

.subtit img {
    width: 100%;
}

.more {
    text-align: center;
    margin: 30px auto;
    width: 80%;
    max-width: 200px;
}

.more a {
    display: block;
    color: #fff;
    padding: 10px 20px;
}

.mainimg {
    position: relative;
    overflow: hidden;
}

.mainimg img {
    width: 100%;
}

@media (max-width: 1024px) {
    .bkimg {
        position: relative;
    }

    .bkimg img {
        min-width: initial !important;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    h4 {
        font-size: 20px;
    }

    .fs20 {
        font-size: 18px;
    }

    .fs22 {
        font-size: 20px;
    }

    .fs24 {
        font-size: 20px;
    }

    .fs26 {
        font-size: 22px;
    }

    .fs28 {
        font-size: 22px;
    }

    .fs30 {
        font-size: 24px;
    }

    .fs32 {
        font-size: 24px;
    }

    .fs34 {
        font-size: 26px;
    }

    .fs36 {
        font-size: 26px;
    }

    .fs38 {
        font-size: 28px;
    }

    .fs40 {
        font-size: 28px;
    }

    .fs42 {
        font-size: 30px;
    }

    .fs44 {
        font-size: 30px;
    }

    .fs46 {
        font-size: 32px;
    }

    .fs48 {
        font-size: 32px;
    }

    .fs50 {
        font-size: 32px;
    }

    a[href*="tel"] {
        pointer-events: initial !important;
    }

    .flex {
        max-width: 768px;
        margin: auto;
    }

    .flexc {
        max-width: 768px;
        margin: auto;
    }

    .flexs {
        max-width: 768px;
        margin: auto;
    }

    .flexb {
        max-width: 768px;
        margin: auto;
    }

    /*カスタムコンテンツ用*/
    .cc221 {
        width: 47%;
    }

    .cc332 {
        width: 30%;
    }

    .cc432 {
        width: 30%;
    }

    .cc533 {
        width: 30%;
    }

    /*横並び用*/
    .gr211 {
        width: 97%;
    }

    .gr321 {
        width: 40%;
    }

    .gr422 {
        width: 47%;
    }

    .gr532 {
        width: 30%;
    }

    .inner {
        width: 93%;
        max-width: 768px;
        padding: 40px 0;
    }

    #gnav p {
        display: block !important;
        position: fixed;
        width: 42px;
        height: 42px;
        top: 0px;
        right: 0px;
        background: #170302;
        cursor: pointer;
        opacity: 0.8;
        z-index: 251;
    }

    #gnav p span.n {
        display: block;
        background: #fff;
        height: 2px;
        width: 28px;
        text-indent: 9999px;
        padding: 0;
        top: 50%;
        left: 7px;
        margin-top: -1px;
        position: absolute;
        -webkit-transition: ease .40s;
        transition: ease .40s;
    }

    #gnav p span.n:before {
        display: block;
        content: "";
        background: #fff;
        height: 2px;
        width: 28px;
        position: absolute;
        top: -10px;
        left: 0;
    }

    #gnav p span.n:after {
        display: block;
        content: "";
        background: #fff;
        height: 2px;
        width: 28px;
        position: absolute;
        top: 10px;
        left: 0;
    }

    #gnav.action p span.n {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #gnav.action p span.n:after,
    #gnav.action p span.n:before {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        top: 0;
        left: 0;
    }

    #gnav .accordion-body {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        opacity: 0;
        -webkit-transition: height ease .1s, opacity ease .4s;
        transition: height ease .1s, opacity ease .4s;
        padding: 0;
        border: none;
        padding-bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        z-index: -10;
    }

    #gnav.action .accordion-body {
        height: 100vh;
        opacity: 1;
        z-index: 250;
    }

    #gnav .accordion-inner {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 80px;
    }

    #gnav li {
        display: block !important;
        width: 100%;
        float: none;
        border: none !important;
        border-bottom: 1px dotted #cacad9 !important;
        padding: 0 !important;
        margin-top: 0;
    }
    #gnav li.sp-none{
      display: none !important;
    }
    #gnav li li:last-child{
border-bottom: none !important;
    }
    #gnav li.no{
      border-bottom: 0px dotted #cacad9 !important;
    }
    #gnav ul li.no a{
      text-align: center;
    }
    #gnav li:hover:before {
        display: none;
    }

    #gnav ul li a {
        height: auto;
        display: block;
        text-align: left;
        padding: 10px 15px;
        border: none !important;
    }

    .overlay:after {
        content: "";
        width: 100%;
        height: 100vh;
        background: #000;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0.3;
        z-index: 150;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }
}

@media (max-width: 599px) {
    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    .fs18 {
        font-size: 16px;
    }

    .fs20 {
        font-size: 18px;
    }

    .fs22 {
        font-size: 18px;
    }

    .fs24 {
        font-size: 20px;
    }

    .fs26 {
        font-size: 20px;
    }

    .fs28 {
        font-size: 22px;
    }

    .fs30 {
        font-size: 22px;
    }

    .fs32 {
        font-size: 24px;
    }

    .fs34 {
        font-size: 24px;
    }

    .fs36 {
        font-size: 26px;
    }

    .fs38 {
        font-size: 26px;
    }

    .fs40 {
        font-size: 28px;
    }

    .fs42 {
        font-size: 28px;
    }

    .fs44 {
        font-size: 30px;
    }

    .fs46 {
        font-size: 32px;
    }

    .fs48 {
        font-size: 32px;
    }

    .fs50 {
        font-size: 32px;
    }

    .flex {
        max-width: 450px;
        margin: auto;
    }

    .flexc {
        max-width: 450px;
        margin: auto;
    }

    .flexs {
        max-width: 450px;
        margin: auto;
    }

    .flexb {
        max-width: 450px;
        margin: auto;
    }

    /*カスタムコンテンツ用*/
    .cc221 {
        width: 97%;
    }

    .cc332 {
        width: 47%;
    }

    .cc432 {
        width: 47%;
    }

    .cc533 {
        width: 30%;
    }

    /*横並び用*/
    .gr211 {
        width: 97%;
    }

    .gr321 {
        width: 97%;
    }

    .gr422 {
        width: 47%;
    }

    .gr532 {
        width: 47%;
    }

    .rp {
        max-width: 450px;
        margin: auto;
    }

    .rp .pic {
        float: none !important;
        width: 90% !important;
        margin: 20px auto;
    }

    .rp .tbox {
        float: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .inner {
        width: 94%;
        max-width: 450px;
        padding: 30px 0;
    }
}

/* header */

.head-area {
    position: absolute;
    left: 50%;
    top: 20px;
    z-index: 6;
    max-width: 1000px;
    width: 92%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.head-area .logo img {
    max-width: 140px !important;
}

@media (max-width: 1024px) {}

@media (max-width: 599px) {
    .head-area {
        left: 5px;
        top: 5px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        max-width: auto;
        width: 25%;
    }
}

/* footer */
#footer {
    position: relative;
}

.foot-reserve {
    /* background: url('/import/tenant_1/153.121.64.76/file_contents/184746/get') repeat; */
    background: #7271a7;
    padding: 40px 0;
}

.foot-reserve p {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    text-align: center;
}

.foot-reserve a {
    color: #fff;
}

.foot-bg {
    background: #555;
}

.foot-nav {
    background: #8686b3;
}

.foot-nav ul li {
    width: 14.285%;
    margin: 1% 0;
    text-align: center;
}

.foot-nav ul li a {
    color: #fff;
    font-size: 14px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    display: block;
}

.foot-nav ul li a span {
    display: block;
}

.foot-data {
    background: #5e5d9a;
}

.foot-data p {
    text-align: center;
    color: #fff;
}

.foot-data .foot-logo {
    margin: 0 auto 30px;
}

.foot-data .foot-logo img {
    max-width: 130px !important;
}

.foot-data .time span {
    display: block;
}

.foot-data .hori {
    margin-bottom: 50px;
}



@media (max-width: 1024px) {}

@media (max-width: 599px) {
    .totop {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 20px;
    }
}

/* common */

/* btn */

.btn a,
.btn button {
    display: block;
    padding: 4% 0;
    color: #202020;
}


.w25 {
    width: 25%;
}

/* bkimg用 */
.posi {
    position: relative;
    overflow: hidden;
}

.posi-in {
    position: relative;
    z-index: 2;
}



.second .key {
    position: relative;
    overflow: hidden;
}

.second .key img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.7;
    height: 100%;
    object-fit: cover;
}

.second .key div {
    position: relative;
    overflow: hidden;
}

.second .key div:after {
    padding-top: 43%;
    content: '';
    display: block;
}

.second .h2-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.second .h2-ttl span {
    display: block;
    line-height: 120%;
}



.groval-nav {
    max-width: 1200px;
    padding: 30px 0;
}

.groval-nav.fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 100%;
}

.groval-nav.fixed .grv-head {
    text-align: center;
}

.groval-nav .grv-head {
    width: 12%;
    margin-right: 2%;
}

.groval-nav ul {
    max-width: 86%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: center;
}


.groval-nav ul li {
    margin: 0 15px;
}

.groval-nav ul li a {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    position: relative;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.groval-nav ul li a:before {
    position: absolute;
    top: 100%;
    left: 50%;
    color: transparent;
    content: '•';
    text-shadow: 0 0 transparent;
    font-size: 1.2em;
    -webkit-transition: text-shadow 0.3s, color 0.3s;
    transition: text-shadow 0.3s, color 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

.groval-nav ul li a:hover:before,
.groval-nav ul li a:focus:before {
    color: #202020;
    text-shadow: 10px 0 #202020,
        -10px 0 #202020;
}

/* パンくず */
.breadcrumbs {
  padding: 30px 0;
  background-color: white;
/*   border-bottom: solid 1px #ccc;
border-top: solid 1px #ccc; */
}

.breadcrumbs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
}

.breadcrumbs-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1em;
}

.breadcrumbs-list li {
  display: inline;
  font-size: 14px;
  letter-spacing: 1px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
  font-weight: bold;
  color: #bcd400;
}

.breadcrumbs-list li+li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .breadcrumbs {
      padding: 20px 0;
      font-size: 14px;
  }

  .breadcrumbs-box {
      flex-direction: column;
      align-items: flex-start;
  }

  .breadcrumbs-list {
      width: 90%;
  }

  .breadcrumbs li {
      font-size: 12px;
  }

  .breadcrumbs li+li::before {
      width: 8px;
      height: 8px;
      margin: 0 5px 1px;
  }
}

@media (max-width: 599px) {
  .breadcrumbs {
      padding: 15px 0;
      font-size: 12px;
  }

  .breadcrumbs li+li::before {
      width: 6px;
      height: 6px;
  }
}

/* 見出しボーダー */
.bodd {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.bodd:before {
    content: "";
    display: block;
    background: #232323;
    width: 7%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.bodd:after {
    content: "";
    display: block;
    background: #e5e5e5;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}


@media (max-width: 1024px) {
    .groval-nav {
        display: none;
    }

    #gnav {
        display: block;
    }
}

@media (max-width: 599px) {
    .w25 {
        width: 50%;
    }
}

/* index */
.index .mainkey {
    position: relative;
    background: #fff;
}

.index .mainkey .mainimg {
    opacity: 0.8;
}

.index h3 span {
    display: block;
    line-height: 100%;
}

.index .catch-area {
    position: absolute;
    width: 100%;
    max-width: 1000px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.index .catch {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    font-size: 75px;
    line-height: 90%;
    color: #fff;
    margin-bottom: 2%;
}

.index .catch-box .databox {
    border-left: 5px solid #fff;
    padding-left: 2%;
    margin-bottom: 2%;
}

.index .catch-box .databox p {
    color: #fff;
    line-height: 200%;
}

.index .catch-box .databox .tel a {
  color: #fff;
}

.index .catch-box .reserve a {
    color: #fff;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    padding: 4% 0;
    display: block;
}

.index .catch-box .reserve {
    border: 1px solid #fff;
    width: 25%;
    text-align: center;
}

.index .top-news-post .sechead {
    width: 20%;
    margin-bottom: 0;
}

.index .top-news-post .sechead span {
    display: block;
    line-height: 100%;
}

.index .top-news-post .news-list {
    width: 55%;
    margin-right: 5%;
}

.index .top-news-post .news-list dl {
    margin-bottom: 4%;
}

.index .top-news-post .news-list dt {
    color: #5e5d9a;
    font-weight: normal;
    width: 90px;
}

.index .top-news-post .news-list dd {
    width: calc(100% - 90px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index .top-news-post .btn {
    width: 20%;
    margin-top: 0;
}

.index .top-concept {
    background: #f0f0f0;
    padding-bottom: 50px;
}

.index .top-concept .inner {
    position: relative;
    margin-bottom: 30px;
}

.index .top-concept .pic img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.posiR {
    position: relative;
}

.index .top-concept-area .txt-pack {
    background: #f9f9f9;
    background: #fff;
    width: 60%;
    padding: 4%;
    margin: 5% 0 0 auto;
    position: relative;
    z-index: 1;
    align-self: flex-end;
}
.index .t-kb .top-concept-area .txt-pack{
  margin: 0 auto 0 0;
}
.index .top-concept-area .txt-pack .bg {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.index .top-concept .txt-pack h3 span {
    display: block;
    line-height: 100%;
}

.index .top-concept-area .txt-pack dt {
    margin-bottom: 30px;
    font-weight: bold;
}

.index .top-concept-area .txt-pack dd {
    margin-bottom: 30px;
    line-height: 300%;
}

.index .top-concept .btn {
    border: 1px solid #000;
    text-align: center;
    width: 50%;
}

.index .top-concept .btn a {
    display: block;
    padding: 4% 0;
}

.cont-num {
    color: #5e5d9a;
    position: relative;
    z-index: 2;
}

.cont-num .int {
    font-family: 'Galdeano', sans-serif;
    margin-right: 5px;
    letter-spacing: -4px;
}

.cont-num .txt {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    vertical-align: baseline;
}

.top-concept-area .cont-num {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 2;
}

.top-concept-area .cont-num .txt {
    vertical-align: top;
}


.top-concept .top-info-area .txt-pack,
.top-concept .top-info-area .map-area {
    width: 50%;
}

.top-concept .top-info-area .map-area .map {
    height: 100%;
}

.top-concept .top-info-area .inbox {
    width: 80%;
    margin: 0 auto;
}

.top-concept .top-info-area .inbox h3,
.top-concept .top-info-area .inbox .sub {
    margin-bottom: 30px;
}

.top-concept .top-info-area .inbox .sub {
    font-size: 18px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}

.top-concept .top-info-area .inbox dl {
    margin-bottom: 25px;
}

.top-concept .top-info-area .inbox dt {
    width: 20%;
    font-weight: normal;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.top-concept .top-info-area .inbox dd {
    width: 80%;
}

.top-concept .top-info-area .cont-num {
    margin-top: -10px;
}

.top-gallery h3 {
    text-align: center;
}

.top-gallery li:last-child {
    background: #5e5d9a;
    aspect-ratio: 1/1;
}

.top-gallery li {
    -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: 0;
}

.top-gallery div .cont-num {
    color: #fff;
    margin: 0 auto 15px;
    text-align: center;
}

.top-gallery .btn {
    border: 1px solid #fff;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.top-gallery .btn a {
    display: block;
    padding: 4% 0;
    color: #fff;
}

.top-menu {
    padding: 50px 0;
}

.top-menu .inner {
    background: #fff;
    padding: 50px;
}

.top-menu .bkimg.filter:before {
    background: rgba(0, 0, 0, 0.6);
}

.top-menu h3 {
    text-align: center;
}

.top-menu .menu-cat {
    padding: 1% 4%;
    margin-bottom: 20px;
}

.top-menu ul li dl {
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.top-menu ul li dl dt {
    width: 30%
}

.top-menu ul li dl dd {
    width: 70%;
    text-align: right;
}

.coupon-banner {
    border: 2px solid #1e2f51;
    position: relative;
    background-size: auto auto;
    background-color: rgba(87, 102, 131, 1);
    background-image: -webkit-repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(103, 120, 154, 1) 5px, rgba(103, 120, 154, 1) 10px);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(103, 120, 154, 1) 5px, rgba(103, 120, 154, 1) 10px);
}

.coupon-banner a {
    display: block;
}

.coupon-banner dl {
    padding: 3% 0;
}

.coupon-banner dt {
    margin-bottom: 10px;
}

.coupon-banner dt,
.coupon-banner dd {
    color: #fff;
    text-align: center;
}

.coupon-banner a {
    position: relative;
}

.coupon-banner .inbox:before,
.coupon-banner .inbox:after,
.coupon-banner .subinbox:before,
.coupon-banner .subinbox:after {
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
}

.coupon-banner .inbox:before {
    background: url('/import/tenant_1/153.121.64.76/file_contents/184748/get') no-repeat left top;
    left: 2px;
    top: 2px;
}

.coupon-banner .inbox:after {
    background: url('/import/tenant_1/153.121.64.76/file_contents/184749/get') no-repeat left bottom;
    left: 2px;
    bottom: 2px;
}

.coupon-banner .subinbox:before {
    background: url('/import/tenant_1/153.121.64.76/file_contents/184750/get') no-repeat right top;
    right: 2px;
    top: 2px;
}

.coupon-banner .subinbox:after {
    background: url('/import/tenant_1/153.121.64.76/file_contents/184751/get') no-repeat right bottom;
    right: 2px;
    bottom: 2px;
}

.top-menu .cont-num {
    position: absolute;
    bottom: 0;
    max-width: 1000px;
    width: 92%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    text-align: right;
    color: #fff;
}

.top-menu .cont-num .int {
    margin-right: 10px;
}

.top-pickup {
    background: #f4ede2;
    position: relative;
}

.top-pickup .inner {
    background: #f9f9f9;
}

.top-pickup .txt-pack .inbox {
    position: relative;
    width: 45%;
}

.top-pickup .posiR:nth-child(even) .txt-pack .inbox {
    margin: 0 auto 0 0;
    padding-left: 5%;
}

.top-pickup .txt-pack h3 {
    margin-bottom: 30px;
}

.top-pickup .btn {
    margin-left: 0;
}

.top-pickup .posiR:nth-child(odd) .pic {
    left: 0;
}

.top-pickup .posiR:nth-child(even) .pic {
    right: 0;
}

.top-pickup .txt-pack .txt {
    margin-bottom: 30px;
    line-height: 300%;
}

.top-pickup .top-spa {
    position: relative;
}

.top-pickup .top-spa .txt-pack {
    padding-top: 0;
    padding-bottom: 100px;
    position: relative;
}

.top-pickup .top-spa .cont-num {
    position: absolute;
    left: 5%;
    bottom: 50px;
}

.top-pickup .top-spa h3 {
    font-size: 50px;
    margin-bottom: 0 !important;
    transform: translateY(-50%);
}

.top-pickup .top-spa .txt-pack dt {
    font-size: 24px;
    margin-bottom: 30px;
}

.top-pickup .top-spa .txt-pack dd {
    line-height: 200%;
    margin-bottom: 30px;
}

.top-pickup .top-spa .pic {
    left: 0;
    top: -5%;
    height: calc(105% - 80px);
    transform: none;
}

.top-staff {
    background: #f4ede2;
    position: relative;
}

.top-staff .inner {
    background: none;
    position: relative;
}

.top-staff li {
    width: 29.333%;
    margin: 2%;
}

.top-staff .icon {
    max-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px;
}

.top-staff .staff-data {
    background: #f9f9f9;
    position: relative;
    padding: 30px 25px 20px;
    box-sizing: content-box;
}

.top-staff h3 {
    text-align: center;
}

.top-staff .staff-data .position {
    background: #333;
    color: #fff;
    text-align: center;
    width: 200px;
    padding: 2% 0;
    letter-spacing: 1px;
    position: absolute;
    left: -10px;
    top: 0;
    transform: translateY(-50%);
}

.top-staff .btn {
    width: 26%;
    background: #000;
    border: none;
}

.top-staff .btn a {
    color: #fff;
}

.cont-num .fs80 {
    font-size: 80px;
}

.top-staff .cont-num {
    color: #ccb38c;
    position: absolute;
    left: 0;
    bottom: 0;
}

.top-recruit .bkimg.filter:before {
    background: rgba(0, 0, 0, 0.4);
}

.top-recruit h3,
.top-recruit dt,
.top-recruit dd,
.top-recruit .btn a {
    color: #fff;
    text-align: center;
}

.top-recruit dt,
.top-recruit dd {
    margin-bottom: 30px;
}

.top-recruit dd {
    line-height: 250%;
}

.top-recruit .btn {
    border-color: #fff;
    width: 25%;
}

.cont-num .fs55 {
    font-size: 55px;
}

.top-recruit .cont-num {
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.top-recruit .pic {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.top-recruit .pic:before {
    background: rgba(0,0,0,0.8);
    z-index: 1;
    display: block;
}

.top-blog {
    background: #f0f0f0;
}

.top-blog li {
    width: 29.333%;
    margin: 2%;
}
.top-blog.new li{
  width: 23%;
  margin: 10px;
  -webkit-box-shadow: 8px 10px 32px -10px rgb(0 0 0 / 43%);
  -ms-box-shadow: 8px 10px 32px -10px rgba(0, 0, 0, 0.43);
  box-shadow: 8px 10px 32px -10px rgb(0 0 0 / 43%);
  background: #fff;
}

.top-blog dl {
    background: #f9f9f9;
    -webkit-box-shadow: 8px 10px 32px -10px rgba(0, 0, 0, 0.43);
    -ms-box-shadow: 8px 10px 32px -10px rgba(0, 0, 0, 0.43);
    box-shadow: 8px 10px 32px -10px rgba(0, 0, 0, 0.43);
    padding: 4%;
}
.top-blog.new dl{
  box-shadow:none;
}
/* .top-blog dt {
    margin-bottom: 10px;
} */

.top-blog .btn {
    width: 25%;
    background: #000;
    border: none;
    margin: 30px auto 20px;
}

.top-blog .btn a {
    display: block;
    color: #fff;
}

.top-blog .inner {
    position: relative;
}

.top-blog .cont-num {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (max-width: 1024px) {
    .index .catch {
        font-size: 42px;
    }

    .index .catch-box {
        width: 90%;
        margin: 0 auto;
    }

    .index .catch-box .reserve {
        width: 45%;
        margin: 0 0 0 auto;
    }

    .index .catch-box .databox p {
        line-height: 160%;
    }

    .index .catch-box .databox {
        margin-bottom: 2%;
    }

    .index .catch-area {
        top: 60%;
    }

    .index .top-concept-area .txt-pack {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
    }

    /* .index .top-concept-area .posiR {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-top: 30px;
    } */

    .index .top-concept-area .txt-pack h3 {
        position: relative;
        left: auto;
        top: auto;
    }

    .index .top-news-post .news-list dd,
    .index .top-news-post .news-list dt {
        width: 100%;
    }

    .index .top-news-post .news-list dt {
        margin-bottom: 5px;
    }

    .index .top-concept .pic {
        width: 60%;
        margin: 0 auto;
    }

    .top-concept .top-info-area .txt-pack,
    .top-concept .top-info-area .map-area {
        width: 100%;
    }

    .top-concept .top-info-area .txt-pack {
        margin-bottom: 30px;
    }

    .top-menu .bkimg,
    .top-recruit .bkimg {
        position: absolute;
    }

    .top-menu .bkimg img,
    .top-recruit .bkimg img {
        min-width: 1200px !important;
    }

    .top-menu .inner {
        padding: 4%;
    }

    .top-menu ul li dl dt,
    .top-menu ul li dl dd {
        width: 100%;
    }

    .top-pickup .posiR .pic,
    .top-pickup .top-spa .txt-pack h3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .top-pickup .txt-pack .inbox {
        width: 94%;
        margin: 0 auto;
    }

    .top-pickup .top-spa .txt-pack {
        padding: 30px 0;
    }

    .top-pickup .top-spa .cont-num {
        bottom: -5%;
    }

    .top-pickup .posiR .pic {
        width: 70%;
        margin: 0 auto;
    }

    .top-pickup .inner {
        background: none;
    }

    .top-pickup .posiR {
        background: #fff;
    }

    .top-pickup .top-esthe {
        padding-bottom: 40px;
    }
}

@media (max-width: 599px) {
    .index .catch {
        font-size: 20px;
    }

    .index .catch-box .databox p.fs14 {
        font-size: 10px;
        line-height: 120%;
    }

    .index .catch-box .databox {
        border-left: 2px solid #fff;
    }

    .index .catch-box .reserve {
        position: absolute;
        top: 0;
        right: 45px;
        width: 35%;
        font-size: 12px;
    }

    .index .catch-area {
        top: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .index .catch-box .reserve a {
        padding: 2% 0;
    }

    .index .catch-box {
        padding-top: 170px;
        width: 96%;
    }

    .index .top-news-post .sechead {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .index .top-news-post .news-list {
        width: 100%;
        margin-bottom: 30px;
    }

    .index .top-concept-area .txt-pack .posiR {
        padding-top: 0;
    }

    .top-concept-area .cont-num {
        left: 10%;
    }

    .index .top-concept .btn {
        margin-bottom: 20px;
    }

    .top-concept .top-info-area .inbox {
        width: 94%;
        margin: 0 auto;
    }

    .top-concept .top-info-area .inbox dt,
    .top-concept .top-info-area .inbox dd {
        width: 100%;
    }

    .top-concept .top-info-area .inbox dt {
        margin-bottom: 10px;
    }


    .top-menu {
        background: rgba(0, 0, 0, 0.6);
    }

    .top-menu .bkimg {
        display: none;
    }

    .top-staff .btn {
        width: 80%;
    }

    .cont-num .fs80 {
        font-size: 50px;
    }

    .top-pickup .top-staff .inner {
        padding-bottom: 60px;
    }

.top-pickup .top-staff .gr321 {
  width: 80%;
}

    .top-recruit .btn {
        width: 80%;
    }

    .top-blog .btn {
        width: 80%;
    }

.top-blog .gr321 {
  width: 80%;
}

    .foot-nav ul li {
        width: 47%;
    }
}

.top-shop {
    margin-bottom: 80px;
}

.top-shop .inner {
    padding-bottom: 100px;
    position: relative;
}

.top-shop dl {
    width: 29.333%;
    margin: 2%;
}

.top-shop dd {
    text-align: center;
    margin-top: 10px;
}

.top-shop .tit {
    font-size: 18px;
}

.top-shop .tel a {
    font-size: 18px;
}

.top-shop .tel a:before {
    display: inline-block;
    content: "\f879";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin-right: 5px;
}

.top-shop .btn {
    width: 80%;
    color: #fff;
    background: #000;
    border: none;
}

.top-shop .btn a {
    color: #fff;
    padding: 8px 0;
}

.top-shop .cont-num {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* menu */
.menu-section .pagelink {
    margin-bottom: 100px;
}

.menu-section .pagelink li {
    background: url('/import/tenant_1/153.121.64.76/file_contents/184752/get') repeat;
    background-color: #5e5d9a;
    text-align: center;
}

.menu-section .pagelink li a {
    color: #fff;
    padding: 2% 0;
    display: block;
}

.menu-cat {
    background: url('/import/tenant_1/153.121.64.76/file_contents/184752/get') repeat;
    background-color: #5e5d9a;
    color: #fff;
}

.menu-section .menu-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.menu-section .menu-title:before {
    content: "";
    display: block;
    background: #232323;
    width: 7%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.menu-section .menu-title:after {
    content: "";
    display: block;
    background: #bdbdbd;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.menu-section .menu-title dt,
.menu-section .menu-title dd {
    font-weight: bold;
}

.menu-section .menu-box {
    padding: 50px 6% 0;
}

.menu-section .menu-box dl {
    border-bottom: 3px solid #bdbdbd;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.menu-section .menu-pack {
    margin-bottom: 6%;
}

@media (max-width: 1024px) {
    .menu-section .menu-box {
        padding: 30px 2% 0;
    }

    .menu-section .menu-box dl {
        margin: 0 1.5% 30px;
    }

    .menu-section .menu-box dl dt,
    .menu-section .menu-box dl dd {
        width: 100%;
    }

    .menu-section .pagelink {
        margin-bottom: 50px;
    }

    .menu-section .menu-title:before {
        width: 13%;
    }
}

@media (max-width: 599px) {
    .menu-section .menu-title:before {
        width: 22%;
    }
}

/* staff staff_detail*/

.ct-data {
    position: relative;
}

.ct.position {
  background: #7271a7;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 2% 0;
  margin-top: -20px;
  margin-left: 0px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  position: relative;
  left: 0;
  top: 0;
}

.staff-section .staff-data dt {
    margin-bottom: 10px;
}

.staff.detail h2 .fs30 {
    color: #f45c5c;
}

.staff.detail .thumb {
    width: 25%;
}

.staff.detail .databox {
    width: 65%;
}

.staff.detail .databox dl {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.staff.detail .databox dl:first-child {
    border-top: 1px solid #e5e5e5;
}

.staff.detail .databox dl dt {
    width: 20%;
    color: #67789a;
}

.staff.detail .databox dl dd {
    width: 80%;
}

.tantou-section h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.tantou-section h3:before {
    content: "";
    display: block;
    background: #232323;
    width: 7%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.tantou-section h3:after {
    content: "";
    display: block;
    background: #e5e5e5;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.tantou-section .btn {
    width: 30%;
    background: #000;
}

.tantou-section .btn a {
    color: #fff;
}

@media (max-width: 1024px) {}

@media (max-width: 599px) {
    .staff.detail .thumb {
        width: 85%;
        margin: 0 auto 6%;
    }

    .staff.detail .databox dl dt,
    .staff.detail .databox dl dd,
    .staff.detail .databox {
        width: 100%;
    }

    .tantou-section .btn {
        width: 80%;
    }
}

/* salon_info */
.salon-pack {
    margin-bottom: 30px;
}

.salon-pack p {
    padding: 30px 0;
}

.salon-pack p span {
    display: block;
}

.salon-pack h3 {
    margin-bottom: 0;
}

.salon-pack .bodd:before {
    width: 15%;
}

@media (max-width: 1024px) {}

@media (max-width: 599px) {
    .salon-pack p {
        padding: 15px 0;
    }
}

/* post blog news */
.post-list-area {
    width: 75%;
}

.post-side-area {
    width: 20%;
}

.post-list-area li {
    margin-bottom: 6%;
}

.post-list-area dl {
    padding: 4%;
}

.post-list-area a {
    display: block;
}

.post-side-area h3 {
    margin-bottom: 30px;
}

.post-side-area h3 span {
    display: block;
    line-height: 100%;
}

.post-side-area ul li {
    position: relative;
    margin-bottom: 4%;
}

.post-side-area ul li:before {
    content: "→";
    display: inline-block;
    padding-right: 15px;
}

.post-side-area .bodd:before {
    width: 40%;
}

.post-side-area .cat-area {
    margin-bottom: 100px;
}

/* pagenav */
.pagenav {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 0 0;
}

.pagenav ul {
    text-align: center;
    background: #000;
    width: 50%;
    margin: 0 auto;
}

.pagenav li {
    display: inline-block;
    margin: 0 5px;
    border-bottom: none;
    padding-bottom: 0;
    border-left: none;
    vertical-align: -webkit-baseline-middle;
    vertical-align: middle;
}

.pagenav li a {
    display: block;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.pagenav .prev,
.pagenav .next {
    position: relative;
}

.pagenav .prev .i-arrow_otL:before,
.pagenav .next .i-arrow_otR:after {
    font-size: 14px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
}

.pagenav .prev .i-arrow_otL:before {
    left: 0;
}

.pagenav .next .i-arrow_otR:after {
    right: 0;
}

.pagenav li.st a,
.pagenav li a:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #202020;
}

.post-single .day {
    color: #5e5d9a;
    margin-bottom: 10px;
}

.post-single .day,
.post-single .cat,
.post-single .title {
    text-align: center;
}

.post-single .cat {
    margin-bottom: 40px;
}

.post-single .title {
    margin-bottom: 60px;
}

.post-single .single-box img {
    display: block;
    margin-bottom: 10px;
}

.post-single .single-box {
    margin-bottom: 100px;
}

.post-single .btn {
    width: 30%;
    background: #000;
    margin: 0 auto 0 0;
}

.post-single .btn a:before {
    content: "<";
    display: inline-block;
    position: absolute;
    left: 10%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.post-single .btn a {
    color: #fff;
}

.blog .recommend {
    margin: 50px 0;
}

.recommend h3 span {
    display: block;
    line-height: 120%;
}

.blog .recommend .thumb,
.blog .recommend dt {
    margin-bottom: 8px;
}

.news .post-list-area dl {
    border-bottom: 1px solid #5e5d9a;
    padding: 4% 4% 4% 0;
}

.news .post-list-area dt {
    color: #5e5d9a;
    width: 20%;
}

.news .post-list-area li {
    margin-bottom: 0;
}

.news .post-list-area dd {
    width: 80%;
}

@media (max-width: 1024px) {
    .post-list-area {
        width: 100%;
        margin-bottom: 10%;
    }

    .pagenav ul {
        width: 70%;
    }

    .post-side-area {
        width: 100%;
        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;
    }

    .post-side-area .cat-area,
    .post-side-area .arc-area {
        width: 47%;
    }

    .post-side-area .arc-area ul {
        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;
    }

    .post-side-area .arc-area ul li {
        width: 47%;
    }

    .post-single .btn {
        margin: 0 auto;
    }
}

@media (max-width: 599px) {
    .pagenav ul {
        width: 100%;
    }

    .pagenav li {
        margin: 0;
    }

    .post-side-area .cat-area,
    .post-side-area .arc-area {
        width: 100%;
    }

    .post-side-area h3 span {
        display: block;
        line-height: 140%;
    }

    .post-side-area .cat-area {
        margin-bottom: 50px;
    }

    .post-single .btn {
        width: 80%;
    }
    .news .post-list-area dt,
    .news .post-list-area dd {
      width: 100%;
    }
}


@media (max-width: 1024px) {

    .gallery-single-section .pic-area,
    .gallery-single-section .databox {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .gallery-single-section .databox dl.four dt {
        width: 100%;
    }

    .gallery-single-section .databox dl.four dd {
        width: 31%;
    }

    .gallery-single-section .databox dl.kata dd {
        margin-bottom: 4%;
    }

    .gallery-single-section .databox .title {
        margin-bottom: 20px;
    }

    .gallery-single-section .databox .comment {
        width: 100%;
    }
}

/* recruit */
.recruit h3 {
    font-weight: normal;
}

.recruit.second .key img {
    top: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.recruit-section {
    background: -webkit-gradient(linear, left top, right top, from(#f4ede2), color-stop(50%, #f4ede2), color-stop(50%, #eee4d4), to(#eee4d4));
    background: -webkit-linear-gradient(left, #f4ede2 0%, #f4ede2 50%, #eee4d4 50%, #eee4d4 100%);
    background: linear-gradient(90deg, #f4ede2 0%, #f4ede2 50%, #eee4d4 50%, #eee4d4 100%);
}

.recruit-num01 {
    background: url('/import/tenant_1/153.121.64.76/file_contents/184746/get') repeat;
}

.recruit-num01 h3 {
    color: #fff;
    margin-bottom: 0;
}

.recruit-num01 .msg-box {
    background: #fff;
    padding: 4%;
}

.recruit-num01 .msg-box dt {
    font-weight: bold;
    margin-bottom: 40px;
}

.recruit-num01 .msg-box dd {
    line-height: 200%;
}

.recruit-num02,
.recruit-num03 {
    padding: 50px 0;
}

.recruit-num02 ul li .title {
    text-align: center;
}

.recruit-num02 ul li .pic {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
}

.recruit .etc {
    width: 35%;
    text-align: center;
}

.bodd.etc:before {
    width: 14%;
}

.recruit-num02 ul li {
    width: 26%;
}

.recruit-num03 dl dt {
    font-weight: bold;
    width: 15%;
}

.recruit-num03 dl dd {
    width: 85%;
}

.recruit-num03 dl {
    margin-bottom: 50px;
}

.recruit-num04 .bgwh {
    background: #fff;
}

.recruit-num04 h3 {
    margin-bottom: 0;
}

.recruit-num04 .staff-area {
    width: 25%;
}

.recruit-num04 .staff-area .pic {
    margin-bottom: 25px;
}

.recruit-num04 .staff-area .name {
    text-align: center;
}

.recruit-num04 .staff-area .name .fs30 {
    color: #ff6666;
}

.recruit-num04 .staff-area .name .fs10 {
    display: block;
    line-height: 100%;
}

.recruit-num04 .staff-voice-area {
    width: 65%;
}

.recruit-num04 .staff-voice-area dl {
    margin-bottom: 30px;
}

.recruit-num04 .staff-voice-area dt {
    border-bottom: 1px solid #e5e5e5;
    color: #ff6666;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.recruit .w33 {
    width: 33%;
}

.recruit-num05 li {
    margin-bottom: 5%;
    position: relative;
}

.recruit-num05 ul li:not(:first-child) {
    padding-top: 6%;
}

.recruit-num05 ul li:not(:first-child):before {
    content: "";
    display: block;
    background: url('/import/tenant_1/153.121.64.76/file_contents/184758/get') no-repeat top center;
    background-size: 100% auto;
    width: 162px;
    height: 32px;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.recruit-num05 .time {
    color: #fff;
}

.recruit-num05 .time span {
    background: #232323;
    display: inline-block;
    width: 40%;
    padding: 2px 0;
    text-align: center;
}

.recruit-num05 dl dt {
    color: #67789a;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .recruit.second .h2-ttl {
        margin-bottom: 0;
    }

    .recruit .etc {
        width: 100%;
    }

    .recruit-num03 dl dt {
        width: 20%;
    }

    .recruit-num03 dl dd {
        width: 80%;
    }

    .recruit-num02,
    .recruit-num03 {
        padding: 30px 0;
    }

    .recruit-num05 .time {
        width: 15%;
    }

    .recruit-num05 .time span {
        width: 100%;
    }

    .recruit .recruit-num05 dl.w33 {
        width: 40%;
    }

    .recruit-num05 ul li:not(:first-child):before {
        background-size: 75% auto;
    }
}

@media (max-width: 1024px) {
  .second .h2-ttl{
    font-size: 28px;
  }
    .recruit-num02 ul li {
        width: 100%;
        margin-bottom: 10%;
    }

    .recruit-num02 ul li .pic {
        width: 70%;
        margin: 0 auto 30px;
    }

    .recruit-num03 dl dt,
    .recruit-num03 dl dd {
        width: 100%;
    }

    .recruit-num03 dl dt {
        margin-bottom: 10px;
    }
}

@media (max-width: 599px) {
    .recruit-num04 .staff-area {
        width: 100%;
        margin-bottom: 6%;
    }

    .recruit-num04 .staff-area .pic {
        width: 80%;
        margin: 0 auto 20px;
    }

    .recruit-num04 .staff-voice-area {
        width: 100%;
    }

    .recruit .w33 {
        width: 100%;
    }

    .recruit-num05 .time {
        text-align: center;
        margin-bottom: 10px;
    }

    .recruit-num05 .time span {
        width: 50%;
    }

    .recruit .recruit-num05 dl.w33 {
        width: 100%;
        text-align: center;
    }

    .recruit-num05 dl dt {
        text-align: center;
    }

    .recruit-num05 dl dd {
        margin-bottom: 20px;
    }

    .recruit-num05 ul li:not(:first-child) {
        padding-top: 20%;
    }
}

/* concept */

.concept-area {
    margin-bottom: 6%;
}

.concept-list .concept-area:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.concept-area .txt-box {
    width: 50%;
}

.concept-area .pic,
.concept-area .pic-box {
    width: 48%;
}

@media (max-width: 1024px) {
    .concept-area .pic-box .pic {
        width: 60%;
        margin: 0 auto 10px;
    }
}

@media (max-width: 599px) {

    .concept-area .txt-box,
    .concept-area .pic,
    .concept-area .pic-box {
        width: 100%;
    }

    .concept-area .txt-box {
        margin-bottom: 15px;
    }

    .concept-area .pic-box .pic {
        width: 47%;
    }
}

@media (max-width: 599px) {}

/* faq */
.faq-box dt {
    font-weight: bold;
    position: relative;
    padding-right: 50px;
    margin-bottom: 30px;
}

.faq-box dt,
.faq-box dd {
    position: relative;
    padding-left: 60px;
}

.faq-box dt:before,
.faq-box dd:before {
    display: block;
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    font-family: "游明朝",
        YuMincho,
        "ヒラギノ明朝 ProN W3",
        "Hiragino Mincho ProN",
        "HG明朝",
        serif;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
}

.faq-box dt:before {
    content: "Q";
    background: #5e5d9a;
    color: #fff;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.faq-box dd:before {
    content: "A";
    background: #fff;
    color: #5e5d9a;
    border: 2px solid #5e5d9a;
    top: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-box dt span:before {
    display: block;
    content: "";
    background: #5e5d9a;
    height: 2px;
    width: 28px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%) rotate(90deg);
    -ms-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
    -webkit-transition: ease .40s;
    transition: ease .40s;
}

.faq-box dt span:after {
    display: block;
    content: "";
    background: #5e5d9a;
    height: 2px;
    width: 28px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transition: ease .40s;
    transition: ease .40s;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.faq-box dt.is-parent span:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.faq-box dt.is-parent span:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq-box dt.is-parent+dd {
    min-height: 60px;
    -webkit-transition: min-height ease-out .40s;
    transition: min-height ease-out .40s;
}

.faq-box dd {
    min-height: 0;
    -webkit-transition: min-height ease-out .40s;
    transition: min-height ease-out .40s;
}

.faq-box dl {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
@media (max-width: 599px) {

    .faq-box dt:before,
    .faq-box dd:before {
        width: 25px;
        height: 25px;
        line-height: 21px;
        font-size: 16px;
    }

    .faq-box dd:before {
        width: 21px;
        height: 21px;
    }

    .faq-box dt,
    .faq-box dd {
        padding-left: 30px;
    }

    .faq-box dt {
        padding-right: 25px;
    }

    .faq-box dt span:before,
    .faq-box dt span:after {
        width: 20px;
    }
    .faq-box dt {
        margin-bottom: 15px;
    }
}

/* ボタンエフェクト */
.hvr-shut {
    vertical-align: middle;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-shut:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2098D1;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-shut:hover a,
.hvr-shut:focus a,
.hvr-shut:active a {
    color: white;
    opacity: 1;
}

.hvr-shut:hover:before,
.hvr-shut:focus:before,
.hvr-shut:active:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.hvr-shut01:before {
    background: #170302;
}

.hvr-shut02:before {
    background: #fff;
}

.hvr-shut02:hover a,
.hvr-shut02:focus a,
.hvr-shut02:active a {
    color: #202020;
}

hvr-shut02:active a {
    color: #202020;
}

/* 編集画面 */
#gnav[data-element-id] {
  display: block;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

body, div, dl, dt, dd, ul, ol, li, form, input, button, p {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
      font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  line-height: 160%;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
h4{
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.foot-data .foot-logo img {
  filter: drop-shadow(0px 0px 6px #fff)drop-shadow(0px 0px 6px #fff);
}

.foot-data .foot-logo{
margin: 0;
}

.foot-data .foot-data-box .tel-icon::before{
content: "\f879";
  font-size: 90%;
  font-family: "font awesome 5 free";
  margin-right: 5px;
  font-weight: bold;
}

.foot-data .add, .foot-data .time{
margin: 0;
}

.btn{
  background: #363681;
  border: none;
  margin: 50px auto 0;
  text-align: center;
  max-width: 300px;
  width: 100%;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  font-size: 17px;
  letter-spacing: 2px;
  font-weight: bold;
  overflow: hidden;
}


.btn.new{
margin-left: 0;
}

.btn a,
.btn button {
  color: #fff;
  z-index: 1;
  position: relative;
}
.btn button {
  color: #fff;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 0;
}

.top-gallery .btn {
  background: #fff;
}

.top-gallery .btn a {
  color: #000;
}
.top-gallery .item{
  position:		relative;
overflow:		hidden;
}
.top-gallery .caption{
  width: 90%;
  font-size: 130%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  color: #fff;
}
.top-gallery .cate{
      top: 0%;
    position: absolute;
    margin: 10px;
    background: #fff;
    padding: 0 5px;
    border-radius: 5px;
}
.top-gallery .mask{
  width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;
	background-color:	rgba(0,0,0,0.4);
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.top-gallery .item:hover .mask {
	opacity:		1;
}

.top-blog .btn {
  background: #363681;
}

.top-recruit .btn {
  width: 300px;
  background: #fff;
  border: none;
}

.top-recruit .btn a {
  color: #000;
}

h3 {
font-weight: normal;
line-height: 160%;
}

.index .catch-box .reserve {
  border: none;
  width: 25%;
  text-align: center;
  background: #363581;
}

.hvr-shut01:before {
  background: #333;
}
.groval-nav .grv-head {
  width: 12%;
  margin-right: 50%;
}

.index .catch {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  font-size: 40px;
  line-height: 90%;
  color: #fff;
  margin-top: 50px;
  text-shadow: 0 0 10px #000, 0 0 10px #000;
}

.index .sub-catch {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  line-height: 2;
  color: #fff;
  text-shadow: 0 0 10px #000, 0 0 10px #000;
}

.index .catch-box .databox p {
  text-shadow: 0 0 10px #000, 0 0 10px #000;
}

.top-recruit .posi-in dl dd .select-li li{
padding-left: 1em;
text-indent: -1em;
}

.top-recruit .posi-in dl dd .select-li li::before{
 content: "\f00c";
  font-size: 90%;
  font-family: "font awesome 5 free";
  margin-right: 5px;
  font-weight: bold;
}

h1 {
  width: 100%;
  position: absolute;
  bottom: 200%;
  font-size: 12px;
  font-weight: normal;
  padding-right: 40px;
  position: initial;
  text-indent: initial;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}

.head-area h1 {
  margin-bottom: 20px;
  text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}

.head-area .logo img {
  width: 150px !important;
  max-width: none !important;
  filter: drop-shadow(0px 0px 6px #fff)drop-shadow(0px 0px 6px #fff)drop-shadow(0px 0px 6px #fff);
}

.head-area {
  position: absolute;
  left: 50%;
  top: 20px;
  z-index: 6;
  max-width: 1000px;
  width: 92%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.top-pickup .inner {
  background: none;
  padding: 0 !important;
}

.top-pickup .top-spa h3 {
  margin-bottom: 50px !important;
  transform: none;
}

.top-pickup .posiR:nth-child(even) .txt-pack .inbox {
  padding: 0;
}

.top-pickup .posiR:nth-child(odd) .txt-pack .inbox {
  padding: 0;
}

.index .top-news-post .news-list dt {
  color: #5e5d9a;
  font-weight: normal;
  width: 110px;
  margin-right: 10px;
  font-size: 14px;
}

.index .top-concept {
  background: #c9c8dd;
  padding-bottom: 50px;
}

.index .top-concept .pic {
  width: 45%;
  /* height: 100%; */
  z-index: 2 !important;
}

.index .top-concept-area .txt-pack {
  background: #f9f9f9;
  background: #fff;
  width: 55%;
  padding: 4%;
  margin: 5% 0 0 auto;
  position: initial !important;
  z-index: 1;
  align-self: flex-end;
}

.index .top-concept-area .txt-pack .bg {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.index .top-concept-area .txt-pack dd {
  line-height: inherit;
}

.index .top-concept .btn {
  border: 1px solid #000;
  text-align: center;
  max-width: 300px;
  width: 90%;
}

.hvr-shut:hover a, .hvr-shut:focus a, .hvr-shut:active a,
.hvr-shut:hover button, .hvr-shut:focus button, .hvr-shut:active button {
  color:#fff;
  opacity: 1;
}

.hvr-shut02:before {
  background: #333;
  /* color: #fff; */
}

.reason-content ul{
gap: 50px
}

.reason-content li {
  position: relative;
}

.reason-content li .tit {
  width: 100%;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.reason-content li .num {
  width: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  background: #363681;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reason-content li .img {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.reason-content li .img img {
  background: #000;
  opacity: 0.4;
}

.gap10{
gap: 10px;
}

.service-area .imgfit img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.service-area .item {
  background-color: #363581;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.service-area .item:before {
  display: block;
  content: "";
  padding-top: 100%;
}

.service-area .item:after {
  display: block;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: solid 1px #fff;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
}

.service-area .item .tit {
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.service-area .item .tit:after {
  display: block;
  content: "詳しく見る \f054";
  font-size: 90%;
  font-family: "font awesome 5 free", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  font-weight: bold;
  margin-top: 10px;
}

.close-area .top-concept {
  background: #fff;
  padding-bottom: 50px;
}

.close-area .top-concept-area .txt-pack .bg {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.select-area .imgfit img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  font-family: 'object-fit: cover; object-position: center center;';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.4;
}

.select-area .top-recruit dt, .select-area .top-recruit dd, .select-area .top-recruit dd div, .select-area .top-recruit dd ul li{
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}

.top-pickup .top-spa .txt-pack dt {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 30px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif !important;
}

.index .top-concept .bgc-btn .btn {
  border: 1px solid #ffffff;
  text-align: center;
  width: 300px;
  background: #363581;
}

.index .top-concept .bgc-btn .btn:hover {
  border: 1px solid #363581;
  text-align: center;
  width: 300px;
  background: #fff;
}

.index .top-concept .bgc-btn .btn a:hover {
  display: block;
  padding: 4% 0;
  color: #363581;
}

.index .top-concept .bgc-btn .btn a {
  display: block;
  padding: 4% 0;
  color: #fff;
}

.top-gallery li:last-child {
    background-color: #363581;
}

.top-pickup .posiR .pic {
  width: 40%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.top-pickup {
  background: #c9c8dd;
  position: relative;
}

.index .top-concept {
  background: url('/import/tenant_1/153.121.64.76/html/images/791e852429db223c12759dffc569af71.jpg');
  padding-bottom: 0px;
}

.index .top-concept .inner {
  position: relative;
  margin-bottom: 0px !important;
}

.top-pickup .txt-pack .inbox {
  position: relative;
  width: 100%;
}
.top-pickup .top-spa {
  position: relative;
}
.top-shav .inner {
  width: 60%;
  margin-left: 50px;
  padding: 50px 0;
}
.top-shav .img{
  width: 40%;
}

.top-blog {
  background:none ;
}

.voice-area {
background: url('/import/tenant_1/153.121.64.76/html/images/791e852429db223c12759dffc569af71.jpg');
  position: relative;
}

.foot-area .inbox dt {
  width: 15%;
  font-weight: normal;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.groval-nav ul {
  width: 100% !important;
      max-width: none;
  /* -webkit-box-align: end; */
  /* -webkit-align-items: flex-end; */
  -ms-flex-align: end;
  align-items: center;
}

.foot-nav ul li {
  margin: 1% 10px;
  text-align: center;
  width: auto;
}

.groval-nav ul li p {
  padding: 0 0 20px;
  margin-right: 160px;
}

.bgc_01 {
background-color: #c9c8dd !important;
}

.color_02 {
color: #ff3c3c !important;
}

.fw_500{
font-weight: 500;
}

.ff_01 {
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif !important;
}

.cta {
  position: absolute;
  right: 0px;
  z-index: 5;
  top: 35%;
}

.cta.fixed{
  position: fixed;
  z-index: 50;
  bottom: 100px;
  top: auto;
  right: 0;
}

.cta .item > * {
  border-radius: 20px 0 0 20px;
  border: solid 2px #fff;
  padding: 20px;
}

.cta .item:nth-of-type(2n+1) > * {
  background: #eb5e00;
}

.cta .item:nth-of-type(2n+2) > * {
  background: #363581;
}

.cta .item .icon {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin-right: 10px;
}

.cta .item .tit {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.index .top-concept-area .txt-pack{
margin: 0 0 0 auto;
}
.animation .none-animation {
  display: none;
}
.up-fxd-even2>*:nth-child(even) .up-d-flex,
.up-fxd-odd2>*:nth-child(odd) .up-d-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.up-left-1200 {
  margin-left: calc(50% - 600px);
}
.up-right-1200 {
  margin-right: calc(50% - 600px);
}
[class*=up-fxd-even]>.up-left-1200:nth-child(even),
[class*=up-fxd-odd]>.up-left-1200:nth-child(odd) {
  margin-left: 0;
  margin-right: calc(50% - 600px);
}
[class*=up-fxd-even]>.up-right-1200:nth-child(even),
[class*=up-fxd-odd]>.up-right-1200:nth-child(odd) {
  margin-right: 0;
  margin-left: calc(50% - 600px);
}
@media (max-width: 1224px) {
  .up-left-1200 {
    margin-left: 2%;
  }
  .up-right-1200 {
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-left-1200:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1200:nth-child(odd) {
    margin-left: 0;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1200:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1200:nth-child(odd) {
    margin-right: 0;
    margin-left: 2%;
  }
}
@media (max-width: 599px) {
  .up-left-1200 {
    margin-right: 2%;
  }
  .up-right-1200 {
    margin-left: 2%;
  }
  [class*=up-fxd-even]>.up-left-1200:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1200:nth-child(odd) {
    margin-left: 2%;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1200:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1200:nth-child(odd) {
    margin-right: 2%;
    margin-left: 2%;
  }
}
.up-left-1100 {
  margin-left: calc(50% - 550px);
}
.up-right-1100 {
  margin-right: calc(50% - 550px);
}
[class*=up-fxd-even]>.up-left-1100:nth-child(even),
[class*=up-fxd-odd]>.up-left-1100:nth-child(odd) {
  margin-left: 0;
  margin-right: calc(50% - 550px);
}
[class*=up-fxd-even]>.up-right-1100:nth-child(even),
[class*=up-fxd-odd]>.up-right-1100:nth-child(odd) {
  margin-right: 0;
  margin-left: calc(50% - 550px);
}
@media (max-width: 1122px) {
  .up-left-1100 {
    margin-left: 2%;
  }
  .up-right-1100 {
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-left-1100:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1100:nth-child(odd) {
    margin-left: 0;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1100:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1100:nth-child(odd) {
    margin-right: 0;
    margin-left: 2%;
  }
}
@media (max-width: 599px) {
  .up-left-1100 {
    margin-right: 2%;
  }
  .up-right-1100 {
    margin-left: 2%;
  }
  [class*=up-fxd-even]>.up-left-1100:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1100:nth-child(odd) {
    margin-left: 2%;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1100:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1100:nth-child(odd) {
    margin-right: 2%;
    margin-left: 2%;
  }
}
.up-left-1000 {
  margin-left: calc(50% - 500px);
}
.up-right-1000 {
  margin-right: calc(50% - 500px);
}
[class*=up-fxd-even]>.up-left-1000:nth-child(even),
[class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
  margin-left: 0;
  margin-right: calc(50% - 500px);
}
[class*=up-fxd-even]>.up-right-1000:nth-child(even),
[class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
  margin-right: 0;
  margin-left: calc(50% - 500px);
}
@media (max-width: 1024px) {
  .up-left-1000 {
    margin-left: 2%;
  }
  .up-right-1000 {
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-left-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
    margin-left: 0;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
    margin-right: 0;
    margin-left: 2%;
  }
}
@media (max-width: 599px) {
  .up-left-1000 {
    margin-right: 2%;
  }
  .up-right-1000 {
    margin-left: 2%;
  }
  [class*=up-fxd-even]>.up-left-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-left-1000:nth-child(odd) {
    margin-left: 2%;
    margin-right: 2%;
  }
  [class*=up-fxd-even]>.up-right-1000:nth-child(even),
  [class*=up-fxd-odd]>.up-right-1000:nth-child(odd) {
    margin-right: 2%;
    margin-left: 2%;
  }
}

.up-minh-450{
  min-height: 450px;
}

.up-gapy-60 > *:last-child{
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .cta .item > *{
    padding: 10px;
  }
  .cta .item .tit{
    font-size: 16px;
  }
  .index .catch{
  font-size: 26px;
}
.cta{
  top: 35%;
}
}
@media (max-width: 599px) {
  .cta .item{
    width: 50%;
  }
  .cta {
    position: fixed;
    left: 0px;
    z-index: 5;
    top: auto;
    bottom: 0;
}
.cta .item > *{
  border-radius: 0;
}
.copyright{
  padding-bottom: 25px;
}
.d-none-b-sp{
  display: block;
}
.foot-data .add, .foot-data .time{
  margin-bottom: 15px;
}
.top-shav .img{
  width: 95%;
}
.up-d-contents\@sp{
  display: contents;
}
.top-shav .inner{
  width: 100%;
}
.top-pickup .btn{
  margin-left: auto;
}
.btn.ori{
  margin: 20px auto;
}
.index .top-concept .pic{
  width: 95%;
}
.index .t-kb.top-concept .pic{
width: 100%;
}
.index .top-concept-area .txt-pack{
  width: 100%;
  display: contents;
}
.up-minh-450{
  min-height: auto;
}
.service-area .item .tit{
  font-size: 16px;
}
.index .top-concept-area .txt-pack h3{
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
.index .top-news-post .btn{
  width: 100%;
}
.btn.new{
  margin-left: auto;
}
.homevisual .img:before{
  padding-top: 100vh;
}
.index .catch{
  line-height: 1.4;
}
.second .key div:after{
  padding-top: 100%;
}
}
[class*=up-ofi]{
  height: 100%;
}

.video {
  position: relative;
  /* padding-bottom: 56.25%;
  margin-top: 30px;
  overflow: hidden;
  max-width: 100%; */
  }
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }
  .md-1{
    padding: 0.5rem 1rem;
    border-left: 4px solid #eb5e00;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: bold;
  }

  .timeline {
    list-style: none;
  }
  .timeline > li {
    margin-bottom: 60px;
  }
  
  /* for Desktop */
    .timeline > li {
      display: flex;
      margin: 0;
      position: relative;
    }
    .timeline-date {
      width: 110px;
      float: left;
    }
    .timeline-content {
      width: 75%;
      float: left;
      border-left: 3px #e5e5d1 solid;
      padding-left: 30px;
      padding-bottom: 50px;
    }
    .timeline-content:before {
      content: '';
      width: 12px;
      height: 12px;
      background: #363681;
      position: absolute;
      left: 106px;
    top: 10px;
      border-radius: 100%;
    }
    @media (max-width: 599px) {
      .video{
        overflow: hidden;
    position: relative;
    padding-top: 56.25%;
      }
      .timeline > li{
        border-left: 3px #e5e5d1 solid;
        
      flex-direction: column;
      }
      .timeline-content {
        border-left:0px;
      }
      .timeline-date{
        padding-left: 15px;
      }
      .timeline-content:before{
        left: -7px;
    top: 7px;
      }
    }
    /* 共通リスト３ */
.list-cmp03 .item {
  padding: 20px;
}
.list-cmp03 .item:not(:last-child) {
  border-bottom: 1px solid #808080;
}
.list-cmp03 .datattl {
  width: 150px;
  flex-shrink: 0;
  margin-right: 20px;
}
@media only screen and (max-width: 599px) {
  body, div, dl, dt, dd, ul, ol, li, form, input, button, p{
    font-size: 16px;
  }
  .list-cmp03 .item {
    flex-wrap: wrap;
    padding: 20px 10px;
  }
  .list-cmp03 .datattl {
    width: 100%;
    margin-bottom: 5px;
  }
  .list-cmp03 .data {
    width: 100%;
  }
}
.headin{
  background: #363681;
  color: #fff;
  position: absolute!important;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.bg-p{
  background: #c9c8dd;
}
.bg-p2{
  background: #5e5d9a;
}
.bg-o{
  background: #fbe1d2;
}
.c-o{
  color: #eb5e00;
}
.c-g{
  color: #bcd400;
}
.bg-g{
  background: #f2f6d3;
}
.bg-img01{
  background: url('/import/tenant_1/153.121.64.76/html/images/791e852429db223c12759dffc569af71.jpg');
}
.index h3 span.numsp{
  display: inline-block;
  width: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  background: #363681;
  border-radius: 100%;
  text-align: center;
  margin-right: 10px;
}
.blog01 .dateitem dl{
  background: #f9f9f9;
    -webkit-box-shadow: 8px 10px 32px -10px rgb(0 0 0 / 43%);
    -ms-box-shadow: 8px 10px 32px -10px rgba(0, 0, 0, 0.43);
    box-shadow: 8px 10px 32px -10px rgb(0 0 0 / 43%);
    padding: 4%;
}
@media only screen and (max-width: 1024px) {
  .top-blog.new li{
    width: 30%;
  }
}
@media only screen and (max-width: 599px) {
  .top-blog.new li{
    width: 44%;
  }
  .index h3 span.numsp{
    width: 40px;
    line-height: 40px;
  }
}
.table-type-02 dt {
  width: 200px;
  color: #fff;
  font-size: 18px;
  background: #363681;
  border-bottom: solid 2px #fff;
  padding: 15px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.table-type-02 dl:last-of-type dt {
  border-bottom: none;
}

.table-type-02 dd {
  width: calc(100% - 200px);
  background: #fff;
  border-bottom: solid 2px #F7F2F1;
  padding: 15px;
}

.table-type-02 dl:last-of-type dd {
  border-bottom: none;
}

.table-type-02-sec dt {
  width: 50%;
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.table-type-02-sec dd {
  width: 50%;
  text-align: right;
}

@media (max-width: 599px) {
  .table-type-02 dt {
      width: 100%;
      font-size: 16px;
      border-bottom: none;
      padding: 10px;
  }

  .table-type-02 dd {
      width: 100%;
      border-bottom: none;
      padding: 10px;
  }
}


.block-type-02 .item {
  margin-top: 80px;
}
.block-type-02 .item.new{
  margin-top: 0;
}
.block-type-02.ori .item{
  margin-top: 0px;
}
.block-type-02 .item .left {
  width: 50%;
}

.block-type-02 .item .right {
  width: 55%;
  margin-top: 5%;
  margin-left: -5%;
  position: relative;
}

.block-type-02 .item .tbox {
  padding: 40px;
  background: #fff;

  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.block-type-02.new .item .tbox{
  background: #fbe1d2;
}
.block-type-02.new .item.new .tbox{
  background: #5e5d9a;
}
.block-type-02.new .item.new .tbox .tit,
.block-type-02.new .item.new .tbox .txt li{
  color: #fff;
}
.block-type-02.new .item .tbox .txt li{
      padding-left: 1em;
    text-indent: -1em;
}
.block-type-02.new .item .tbox .txt li:before{
      content: "\f00c";
    font-size: 90%;
    font-family: "font awesome 5 free";
    margin-right: 5px;
    font-weight: bold;
}
.block-type-02 .item .tbox .tit {
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 24px;
  line-height: 1.5;
  border-left: solid 4px;
}

.block-type-02 .item:nth-of-type(2n+2) .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.block-type-02 .item:nth-of-type(2n+2) .right {
  margin-left: 0;
  margin-right: -5%;
}

@media (max-width: 1024px) {
  .block-type-02>.item+* {
      margin-top: 60px;
  }

  .block-type-02 .item .tbox {
      padding: 30px;
  }

  .block-type-02 .item .tbox .tit {
      font-size: 22px;
  }
}

@media (max-width: 599px) {
  .block-type-02.new .item{
    margin-top: 30px;
  }
  .block-type-02>.item+* {
      margin-top: 40px;
  }

  .block-type-02 .item .left {
      width: 100%;
  }

  .block-type-02 .item .right {
      width: 100%;
      margin: 0 !important;
  }

  .block-type-02 .item .tbox {
      padding: 20px;
  }

  .block-type-02 .item .tbox .tit {
      font-size: 20px;
  }
}
.b-name .ttl{
  background: #eb5e00;
  color: #fff;
  display: inline-block;
  padding: 0px 15px;
  margin-bottom: 10px;
}
.b-name li{
  padding: 10px;
  margin: 10px;
  width: 47%;
  border: dotted 3px #ccc;
}
@media (max-width: 1024px) {
  .b-name li{
    width: 46%;
  }
}
@media (max-width: 599px) {
  .b-name li{
    width: 100%;
    margin: 10px 0;
  }
}

.gaiyou {
  width: auto;
  border-spacing: 0;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.gaiyou th {
  color: #fff;
  padding: 8px 15px;
  background: #363581;
  font-weight: bold;
  border-left: 1px solid #363581;
  border-top: 1px solid #8686b3;
  border-bottom: 1px solid #8686b3;
  line-height: 120%;
  text-align: center;
  width: 30%;
}

.gaiyou th:last-child {
  border-radius: 0 5px 0 0;
  border-right: 1px solid #363581;
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
}

.gaiyou tr td {
  padding: 8px 15px;
  border-bottom: 1px solid #8686b3;
  border-left: 1px solid #8686b3;
  border-top: 1px solid #8686b3;
  text-align: center;
}

.gaiyou tr td:last-child {
  border-right: 1px solid #8686b3;
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.gaiyou tr {
  background: #fff;
}

.gaiyou tr:nth-child(2n+1) {
  background: #f1f6fc;
}

.gaiyou tr:last-child td {
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.gaiyou tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.gaiyou tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.gaiyou-link a{
  display: block;
  width: 100%;
  text-decoration: underline;
  text-decoration-color: #363581;
}
.gaiyoubox .ttl{
  position: relative;
  display: inline;
}
.gaiyoubox .ttl::before {
  content: '';
  display: inline-block;
  background-color: #201a75;
  height: 3px;
  width: 50%;
  position: absolute;
  bottom: -3px;
  right: 50%;
}
.gaiyoubox .ttl::after {
  content: '';
  display: inline-block;
  background-color: #8686b3;
  height: 3px;
  width: 50%;
  position: absolute;
  bottom: -3px;
  left: 50%;
}
@media (max-width: 599px) {
  .gaiyou tr {
    display: flex;
    flex-wrap: wrap
  }
  .gaiyou th {
    width: 100%;
  }
  .gaiyou tr td {
    width: 100%
  }
}

.map-cont {
  margin-right: auto;
  margin-left: auto;
  width: calc(90% - 40px)
}

.area-list {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}

.area-list li {
  padding: 20px 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding-left: 3em;
}

.area-list li::before {
  font-family: "Font Awesome 5 Free";
  content: '\f058';
  font-weight: bold;
  color: #8686b3;
  margin-right: 5px;
}

@media (max-width: 599px) {
  .form .box{
    flex-wrap: wrap;
  }
   .area-list li {
    padding-left: 2em;
  }
  .area-list.new{
    width: 100%;
  }
    .area-list.new li {
    padding-left: 0;
  }
  .btn.con{
    max-width: 140px;
  }
}

.sb-ki{
  color: red;
  font-weight: bold;
  text-align: center;
}

.js-split-tag span {
  display: inline-block;
  padding: 0px 10px;
  font-size: 13px;
  color: #fff;
  background: #363581;
  margin: 0 5px 5px 0;
}

.voice .title-sub{
  position: relative;
  margin: 0 auto 10px;
  padding: 0 10px 10px;
  border-bottom: 3px solid #fbe1d2;
}
.voice .title-sub:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #eb5e00;
}

.detail-content-text h2 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 0.5em;
  border-bottom: 3px solid #8686b3;
}

.detail-content-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  padding: 0.5em 1em;
  background-color: #363581;
}

.detail-content-text h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.fead-text .str.textin{
  animation: blur 5s forwards;
	-webkit-animation: blur 5s forwards;
	will-change: transform;
	 transform: translate3d(0,0,0);
	 -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@keyframes blur {
	0%		{text-shadow:  0 0 100px #fff; opacity:0;}
	5%		{text-shadow:  0 0 90px #fff;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #fff;}
	80%		{text-shadow:  0 0 0px #fff;}
	100%		{opacity: 1;}
}

@-webkit-keyframes blur {
	0%		{text-shadow:  0 0 100px #fff; opacity:0;}
	5%		{text-shadow:  0 0 90px #fff;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #fff;}
	80%		{text-shadow:  0 0 0px #fff;}
	100%		{opacity: 1;}
}

.d-none{
  display: none;
}
.cta.ab .item .icon{
  margin-right:0;
}

@media (max-width: 599px) {
  .cta.ab .item{
    width: 15%;
  }
  .cta.ab .item:nth-of-type(2n+1) > * {
    background: #eb5e00;
    border-radius: 100%;
    width: 50px;
    height: 50px;
}
.cta.ab .item:nth-of-type(2n+2) > * {
    background: #363581;
    border-radius: 100%;
    width: 50px;
    height: 50px;
}
}
/* 
[data-element-id] .d-none{
  display: block;
} */

[data-element-id] [data-ab-test-contents] {
    padding: 1.5em 0.2em 0.2em;
    border: 2px solid #8b008b;
    position: relative;
}

[data-element-id] [data-ab-test-contents]::before {
    content: "Aパターン";
    width: 100%;
    display: block;
    padding: 0.5em 0.2em;
    font-size: 10px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: #8b008b;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id][data-ab-test-block] {
    box-shadow: 0 0 0 1.5px #8b008b !important;
    position: absolute;
    right: 0;
    top: 50%;
}
[data-element-id] .cta{
  position: relative;
}

[data-element-id] [data-ab-test-contents]+[data-ab-test-contents] {
    border: 2px solid #556b2f;
}

[data-element-id] [data-ab-test-contents]+[data-ab-test-contents]::before {
    content: "Bパターン";
    background-color: #556b2f;
}
[data-element-id] .gnav .list02{
      visibility: visible;
    opacity: 1;
       top: 0px;
}
[data-element-id] .gnav .item01.-parent{
  height: 320px;
}
[data-element-id] .gnav .list02{
  position: relative;
}
[data-element-id] .up-d-none {
    display: block;
    margin-bottom: 50px;
    border: solid 4px black;
    position: relative;
}
[data-element-id] .up-d-none:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: black;
}

[data-element-id].fead-order>* {
    opacity: 1;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.fadeIn .uk-flex-center{
animation: infinite 7s forwards fadeInAnime;
}

@keyframes fadeInAnime{
  0% {
    filter: blur(10px);
    scale: 1.2;
  }
30%{
  filter: blur(0px);
}
  100% {
    scale: 1;
  }
}

/* A-BiSUスライダー */
.homevisual .uk-slidenav-position {
    height: 100%;
}

.homevisual .uk-slideshow {
    height: 100% !important;
    overflow: hidden;
    position: relative;
}

.homevisual .uk-slideshow::after {
    content: "";
    display: block;
    padding-top: 55%;
}

.homevisual .uk-slideshow li {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
}

.homevisual .uk-slideshow li>div {
    height: 100% !important;
}

.homevisual .uk-slideshow img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: cover; object-position: center center;";
}

.uk-dotnav>*>* {
    width: 10px;
    height: 10px;
}

.uk-dotnav .uk-active>* {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.uk-dotnav li a:hover {
    opacity: 1;
}

.uk-dotnav-contrast>*>* {
    background: #ccc;
}

.uk-dotnav-contrast>.uk-active>* {
    background: #565656;
}

.uk-position-bottom {
    bottom: -30px;
}
.flex-li li .m-dtext{
display: flex;
    align-items: flex-start;
        flex-wrap: wrap;
            -webkit-box-shadow: 8px 10px 32px -10px rgb(0 0 0 / 43%);
    -ms-box-shadow: 8px 10px 32px -10px rgba(0, 0, 0, 0.43);
    box-shadow: 8px 10px 32px -10px rgb(0 0 0 / 43%);
    background: #f9f9f9;
}
.flex-li li dl{
  padding: 4%;
}
.flex-li li .pic{
  width: 40%
}
.flex-li li dl{
   width: 60%
}
.top-blog.new .flex-li li{
  width: 30%;
  background: #f9f9f9;
}
@media (max-width: 1024px) {
  .top-blog.new .flex-li li{
    width: 45%;
  }
}
@media (max-width: 599px) {
  .top-blog.new .flex-li li{
    width: 43%;
  }
  .flex-li li .pic{
  width: 100%
}
.flex-li li dl{
   width: 100%
}
    .homevisual .uk-slideshow::after {
        padding-top: 180%;
    }
}
.w-66{
 width: calc(100% - 60px);
}
.w-33{
 width: 100px;
}

.feature-cont{
  position: relative;
    border: 4px solid #201a75;
    border-radius: 20px;
    padding: 40px 20px 40px 180px;
}
.feature-label {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #bcd400;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -30px;
  left: 30px;
  color: #fff;
}

.feature-txt {
  line-height: 2;
}
.area-list2 li::before {
    font-family: "Font Awesome 5 Free";
    content: '\f058';
    font-weight: bold;
    color: #b0c6e5;
    margin-right: 5px;
}
.area-list2 li {
    padding: 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
@media (max-width: 599px) {
  .feature-cont {
    padding: 70px 20px 40px;
}
.feature-label {
    width: 100px;
    height: 100px;
    font-size: 24px;
}
.up-maxw-140\@sp {
      max-width: 140px;
    }
}
.search-icon {
    width: 20%;
    margin: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}
.uk-lb:hover{
  cursor: pointer;
}
.uk-lb::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.uk-lb:hover::before {
    background-color: transparent;
    z-index: -999;
}
.con-tel-icon::before {
    content: "\f879";
    font-size: 90%;
    font-family: "font awesome 5 free";
    margin-right: 5px;
    font-weight: bold;
}

.before-after .ttl{
    padding-left: 10px;
    border-left: solid 4px #5e5d9a;  
}
.pcnone-sp{
 display: none; 
}
.tel-b a{
  display: flex;
      align-items: center;
    justify-content: center;
}
.tel-b a i{
margin-right: 10px;  
}
@media (max-width: 1024px) {
  .tel-b a i{
margin-right: 0px;  
}
  .d-none-ori{
    display: none
  }
}
@media (max-width: 599px) {
  .pcnone-sp{
 display: block; 
}
  .pc-spnone{
 display: none; 
}
  .btn{
        font-size: 14px;
  }
  .index .top-concept-area .txt-pack dd.ortxt{
    margin-top: 10px;
  }
  .index .top-concept-area .txt-pack dd{
    margin-top: 10px;
    margin-bottom:0;
  }
.index .top-concept .btn.new02{
  max-width: 140px;
  margin-top: 0;
}
.index .top-concept .mt-30sp .btn{
  margin-top: 30px;
}
#popupImage-469 {
  max-width: unset !important;
}
}


.jirei img{
  object-fit: contain !important;
}

.jirei-02 img{
  object-fit: contain !important;
}
