@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');


/*===================================
  基本設定
===================================*/
html {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
}

html {
  --text-color-01: #201e25;
  --text-color-02: #f3f3f3;
  --text-color-03: #59585d;
  --bg-color-01: #201e25;
  --bg-color-02: #f3f3f3;
  --bg-color-03: #59585d;
  --btn-color-01: #201e25;
  --btn-color-02: #f3f3f3;
  --btn-color-03: #59585d;
}

/* スマホ時画面左右の余白を多めにつける */
@media (max-width: 599px) {
  .inner500,
  .inner600,
  .inner700,
  .inner800,
  .inner900,
  .inner,
  .inner1100,
  .inner1200,
  .inner1300,
  .inner1400,
  .inner1500,
  .inner1600,
  .inner1700,
  .inner1800,
  .inner1900,
  .inner2000 {
    width: 92%;
    max-width: 768px;
  }
}

.font01 {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}

.list-inner {
  height: 100%;
}

.reader1 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reader2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;

  -webkit-line-clamp: 2;
}

.reader1to2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 599px) {
  .reader1to2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;

    -webkit-line-clamp: 2;
  }
}

/* PC・TB・SPで表示切替 */
.show\@pc {
  display: block;
}

.hide\@pc {
  display: none;
}

@media (max-width: 1024px) {
  .show\@tb {
    display: block;
  }

  .hide\@tb {
    display: none;
  }
}

@media (max-width: 599px) {
  .show\@sp {
    display: block;
  }

  .hide\@sp {
    display: none;
  }
}

/*===================================
  component.css
===================================*/

/* A-BiSUスライダー */
.main-visual .uk-slidenav-position {
  height: 100%;
}

.main-visual .uk-slideshow {
  height: 100% !important;
  overflow: hidden;
  position: relative;
}

.main-visual .uk-slideshow::after {
  content: "";
  display: block;
  padding-top: 50%;
}

.main-visual .uk-slideshow li {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
}

.main-visual .uk-slideshow li>div {
  height: 100% !important;
}

.main-visual .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;";
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

.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;
}

@media (max-width: 599px) {
  .main-visual .uk-slideshow::after {
    padding-top: 120%;
  }
}

/* 背景に画像 */
.bg-parent {
  position: relative;
}

.bg-content {
  position: relative;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-filter: brightness(0.3);
  filter: brightness(0.3);
}

[data-element-id].bg-content{
  width: fit-content;
  margin: auto;
  padding: 0;  
}

[data-element-id].bg-parent{
  padding: 100px;
}  

/* 背景画像に丸をかさねたバナーデザイン */
.banner-container .bg-image img {
  -webkit-filter: contrast(0.5);
  filter: contrast(0.5);
}

.banner-container .bg-parent::before {
  content: "";
  width: 40%;
  height: 100%;
  display: block;
  border-radius: 0 350px 350px 0;
  background-color: rgba(117, 177, 169, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-container.ver02 .bg-parent::before {
  background-color: rgba(158, 189, 175, 0.5);
}

.banner-container.ver03 .bg-parent::before {
  background-color: rgba(83, 112, 114, 0.5);
}

.banner-container.ver04 .bg-parent::before {
  background-color: rgba(151, 184, 194, 0.5);
}


@media (max-width: 599px) {
  .banner-container .bg-parent::before {
    width: 100%;
  }
}

/* fead-order */
.fead-order>* {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.fead-order>.mv {
  opacity: 1;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ##### パンくずリスト breadcrumbs ##### */
.breadcrumbs {
  padding-top: 1em;
  background-color: var(--bg-color-01);
  color: #fff;
}

.breadcrumbs-list li {
  display: inline;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage,
.breadcrumbs-list li.breadcrumbs-thispage {
  font-size: 14px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
  font-weight: bold;
}


.breadcrumbs-list li.breadcrumbs-thispage::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  margin: 0 1em 0 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.breadcrumbs-list li.breadcrumbs-prevpage a::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  margin: 0 1em 0 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.breadcrumbs a {
  display: inline;
}

/* ページネーション */
.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagenation li {
  width: 50px;
  height: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.pagenation li a,
.pagenation li .now {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}

.pagenation li.prev a::before,
.pagenation li.next a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.pagenation li.prev a::before {
  content: "\f104";
}

@media (max-width: 599px) {
  .pagenation li {
    width: 40px;
    height: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 5px;
  }
}

/* カテゴリーアーカイブ */
.aside-container .wrap {
  background-color: var(--bg-color-02);
  padding: 20px;
  border-radius: 5px;
}

.aside-container .title {
  font-size: 20px;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 1px solid;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}

.list-category li {
  margin-bottom: 0.5em;
  font-weight: bold;
}

@media(max-width:1024px) {
  .list-category li {
    font-size: 14px;
  }
}

/* 「ブログ詳細ぺージ」見出し用CSS */
.detail-content h2 {
  margin: 1.5em 0 1em;
  padding: 0.2em 0.5em;
  font-weight: bold;
  font-size: clamp(1.375rem, 1.15rem + 0.97vw, 1.875rem);
  border-bottom: 2px solid var(--text-color-01);
}

.detail-content h3 {
  margin: 1.5em 0 1em;
  padding-left: 0.5em;
  font-size: clamp(1.25rem, 1.02rem + 0.97vw, 1.75rem);
  border-left: 10px solid var(--text-color-01);
}

.detail-content h4 {
  margin: 1.5em 0 1em;
  padding: 0.2em;
  font-weight: bold;
  font-size: clamp(1.125rem, 0.9rem + 0.97vw, 1.625rem);
  border-bottom: 2px dotted var(--text-color-01);
}

.detail-content ol {
    counter-reset: count 0;
}
.detail-content ol li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: var(--text-color-01);
    position: relative;
}
.detail-content ol li::before {
    content: counter(count) ". ";
    display: inline-block;
    counter-increment: count 1;
    color: var(--text-color-01);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}
.detail-content ul li {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
    position: relative;
}

.detail-content ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: var(--text-color-01);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}
.detail-content-text ol li marker {
    display: none;
}

.detail-content iframe[src*="youtube"] {
  height: 100%;
  margin-top: 30px;  
  aspect-ratio: 16 / 9;
}

/* お問い合わせフォームの基本 */

.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
}

.contact-form textarea {
  height: 200px;
}

.contact-form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1em 0;
  color: #fff;
}

.contact-form dt {
  width: 25%;
  font-weight: bold;
}

.contact-form dt .require-icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 5px;
  padding: 1px 10px;
  background-color: var(--bg-color-02);
  color: var(--text-color-01);
}

.contact-form dd {
  width: 70%;
}

.contact-form dd input,
.contact-form dd textarea{
  color: #333;
}

@media (max-width: 599px) {
  .contact-form dl {
    display: block;
  }

  .contact-form dt {
    width: 100%;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    margin-bottom: 0.5em;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-form dd {
    width: 100%;
  }

  .contact-form input[type="text"],
  .contact-form textarea {
    padding: 10px;
    border-radius: 3px;
  }
}

/* .contact-item をつけることで解決*/
.contact-item.radiobtn dd {
  padding: 0.5em;
}

.contact-item.radiobtn dd label {
  display: inline-block;
  margin: 0.5em 0;
  padding: 0 10px 0 30px;
  position: relative;
}

.contact-item.radiobtn dd label::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid #dcdcdc;
  border-radius: 3px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-item.radiobtn dd label:hover {
  text-decoration: underline;
  cursor: pointer;
}

.contact-item.radiobtn dd input {
  display: none;
}

.contact-item.radiobtn dd input:checked+label {
  text-decoration: underline;
}

.contact-item.radiobtn dd input:checked+label::after {
  content: "\f00c";
  width: 0;
  height: 0;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--text-color-01);
  line-height: 1;
  background-color: transparent;
  position: absolute;
  top: -3px;
  left: 2px;
}

.contact-item.radiobtn dd input+label {
  margin-left: 15px;
}

@media (max-width: 599px) {
  .contact-item.radiobtn dd {
    padding: 0.5em 0;
  }
}

/*===================================
  共通デザイン
===================================*/

/* 背景色 */
.bgc01 {
  background-color: var(--bg-color-01);
}

.color01 {
  color: var(--text-color-01);
}

.bgc02 {
  background-color: var(--bg-color-02);
}

.color02 {
  color: var(--text-color-02);
}

.bgc03 {
  background-color: var(--bg-color-03);
}

.color03 {
  color: var(--text-color-03);
}

.bgimage01 {
  background-image: url('/import/tenant_1/153.121.57.36/html/images/bg_washi.webp');
}

/* 電話番号 */
/* .tel-wrap {
  color: var(--text-color-01);
  font-size: 22px;
  font-weight: bold;
}

.tel-wrap.large {
  font-size: 28px;
}

.tel-wrap .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tel-wrap .tel::before {
  content: "\f095";
  margin-right: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

@media(max-width:1024px) {
  .tel-wrap .tel {
    font-size: 24px;
  }
} */

/* タイトル */
/* .title00 */
.mask-image {
  -webkit-mask-image: url('/import/tenant_1/153.121.57.36/html/images/fude_white.webp');
  mask-image: url('/import/tenant_1/153.121.57.36/html/images/fude_white.webp');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  position: relative;
  min-height: 27px;
}

.mask-image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.title00 .fead-cover:before {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
  width: 0;
}

.title00 .fead-cover.mv:before {
  width: 300px;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.title00 {
  margin-bottom: 40px;
}

.title00 span {
  display: block;
  text-align: center;
}

.title00 .text {
  color: var(--bg-color-01);
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10px;
  /* 375 22 1300 32 */
  font-size: clamp(1.375rem, 1.1216rem + 1.0811vw, 2rem);
}

.title00 .img {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* 筆の色を指定 */
.title00 .fead-cover:before {
  background-color: var(--bg-color-01);
}

/* .title00(transparent) */
.title00.transparent .fead-cover:before {
  background-color: var(--bg-color-01);
}

/* .title00(white) */
.title00.white .text {
  color: #fff;
}

.title00.white .fead-cover:before {
  background-color: var(--bg-color-02);
}

/* .title00(clearwhite) */
.title00.clearwhite .fead-cover:before {
  background-color: #fff;
}

/* .title00(bggray) */
.title00.bggray .text {
  color: #fff;
}

.title00.bggray .fead-cover:before {
  background-color: var(--bg-color-03);
}


/* .title00(transparent) */
.title00.transparent .text {
  color: #fff;
}

.title00.transparent .fead-cover:before {
  background-color: #000;
}

@media(max-width:599px) {
  .title00 .img {
    width: 210px;
  }

  .title00 .fead-cover.mv:before {
    width: 210px;
  }
}

/* .title01 */
.title01 {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* 375 27 1300 38 */
  font-size: clamp(1.6875rem, 1.4088rem + 1.1892vw, 2.375rem);
}

/* .title02 */
.title02 {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 30px;
  position: relative;
  /* 375 18 1300 30 */
  font-size: clamp(1.125rem, 0.8209rem + 1.2973vw, 1.875rem);
  min-height: 100px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.title02 span {
  display: block;
}

.title02 .img {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.title02 .text {
  position: relative;
  z-index: 2;
}

.title02.center {
  margin-left: auto;
  margin-right: auto;
}

.title02.white {
  color: #fff;
}

@media(max-width:599px) {
  .title02.imgmini {
    min-height: 70px;
  }

  .title02.imgmini .img {
    width: 70px;
    height: 70px;
  }
}

/* ボタン */
button{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

/* .btn00 */
.btn00 {
  margin-top: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn00 a {
  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;
  padding: 10px 0;
  background-color: var(--bg-color-01);
  color: var(--text-color-02);
  border-radius: 5px;
  position: relative;
}

.btn00 .btn-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 80%;
  margin-left: 10px;
}

.btn00.mt50 {
  margin-top: 50px;
}

.btn00.mt20 {
  margin-top: 20px;
}

.btn00.mt20-10 {
  margin-top: 20px;
}

.btn00.mtauto {
  margin-top: auto;
}

.btn00.left {
  margin-left: 0;
}

/* .btn00(white) */
.btn00.white a {
  background-color: var(--bg-color-02);
  color: var(--text-color-01);
}

.btn00.white a:hover {
  color: #fff;
}

@media(max-width:599px) {
  .btn00 {
    margin-top: 20px;
  }

  .btn00.mt50 {
    margin-top: 20px;
  }

  .btn00.mt20 {
    margin-top: 0;
  }
  
  .btn00.mt20-10 {
    margin-top: 10px;
  }  

  .btn00.left {
    margin-left: auto;
  }
}

/* .btn00(back) */
.btn00.back a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.btn00.back .btn-icon {
  margin-left: 0;
  margin-right: 10px;
}

/* ホバーした時の動き */
.btn00 a::before,
.btn00 a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.btn00 a::before {
  transition: all 0.6s;
  z-index: -1;
  background: var(--bg-color-02);
}

.btn00 a::after {
  z-index: -2;
  background: linear-gradient(135deg, white 0%, #201e25 25%);
}

.btn00 a:hover::before {
  opacity: 0;
}

.btn00 a:hover .btn-icon {
  transform: scale(1.5);
  transition: all 0.6s;
}


/* .btn01 */
.btn01 {
  width: 50px;
  height: 280px;
  font-size: 20px;
  text-align: center;
}

.btn01 a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 0;
  height: 100%;
  border-radius: 5px;
  position: relative;
}

.btn01 .btn-text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.btn01 .btn-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 80%;
  margin-top: 10px;
}

/* ホバーした時の動き */
.btn01 a:hover{
  color: #fff;
}

.btn01 a::before,
.btn01 a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.btn01 a::before {
  transition: all 0.6s;
  z-index: -1;
  background: var(--bg-color-02);
}

.btn01 a::after {
  z-index: -2;
  background: linear-gradient(135deg, white 0%, #201e25 25%);
}

.btn01 a:hover::before {
  opacity: 0;
}

.btn01 a:hover .btn-icon {
  transform: scale(1.5);
  transition: all 0.6s;
}

@media(max-width:599px) {
  .btn01 {
    width: 280px;
    height: auto;
    margin-top: 20px;
  }

  .btn01 a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .btn01 .btn-text {
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }

  .btn01 .btn-icon {
    margin-top: 0;
    margin-left: 10px;
  }
}

/* リンクバナー */
.link-banner {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.link-banner .img-wrap {
  -webkit-clip-path: polygon(35% 0, 100% 0%, 100% 100%, 0 100%);
  clip-path: polygon(35% 0, 100% 0%, 100% 100%, 0 100%);
}

.link-banner .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-banner .content-wrap .btn {
  background-color: var(--bg-color-01);
  color: #fff;
  padding: 0.25em 1em;
  border-radius: 50px;
}

@media(max-width:599px) {
  .link-banner .content-wrap {
    padding: 30px 10px;
  }
}

/* そのほか */
.v-writing {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: #fff;
  line-height: 2;
  font-size: 20px;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;  
}

.writing {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: #fff;
  line-height: 2;
  font-size: 20px;
}

@media(max-width:1024px) {
  .v-writing {
    padding: 20px;
    font-size: 16px;
    line-height: 1.75;
    writing-mode: initial;
  }

  .writing {
    font-size: 16px;
    line-height: 1.75;
  }
}

.br5 {
  border-radius: 5px;
  overflow: hidden;
}

.inlineflex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media(max-width:599px) {
  .inlineflex {
    display: block;
  }
}

.img.contrast07 img {
  -webkit-filter: contrast(0.7);
  filter: contrast(0.7);
}

.img.contrast01 img {
  -webkit-filter: contrast(0.1);
  filter: contrast(0.1);
}

.tel-btnwrap.white {
  color: #fff;
  border: 1px solid;
  border-radius: 5px;
}

/*===================================
  section間の余白
===================================*/
/* .area-p */
.area-p {
  padding-top: 100px;
  padding-bottom: 100px;
}

.area-p.pt0 {
  padding-top: 0;
}

.area-p.pb0 {
  padding-bottom: 0;
}

.area-p.mt60 {
  margin-top: -60px;
}

.area-p.small {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media(max-width:1024px) {
  .area-p {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media(max-width:599px) {
  .area-p {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.filter-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media(max-width:1024px) {
  .filter-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media(max-width:599px) {
  .filter-container {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

/* .area-p-middle */
.area-p-middle {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media(max-width:1024px) {
  .area-p-middle {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media(max-width:599px) {
  .area-p-middle {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

/*===================================
  ヘッダー・ナビ・フッター・MV
===================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
}

h1 {
  margin: 10px 0;
  font-size: 12px;
  color: #fff;
  padding-right: 50%;
  text-shadow: 0px 0px 8px #000;
}

.head-logo,
.foot-logo {
  position: relative;
}

.head-logo .img,
.foot-logo .img {
  position: relative;
  z-index: 0;
  transition: 0.3s linear;
}

.head-logo .text,
.foot-logo .text {
  position: absolute;
  top: 50%;
  left: 20%;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-style: italic;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: var(--text-color-01);
}

.head-logo a:hover,
.foot-logo a:hover{
  opacity: 1;
}

.head-logo a:hover .img,
.foot-logo a:hover .img{
  opacity: 0.6;
}

.head-address {
  font-size: 10px;
  margin-top: 10px;
  color: #fff;
}

@media(max-width:1024px) {
  h1 {
    padding-right: 50px;
  }
}

/* MV */
.main-visual {
  position: relative;
}

.main-visual .catchcopy {
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 1;
  width: 100%;
  color: #fff;
  /* 375 40 1300 56 */
  font-size: clamp(2.5rem, 2.0946rem + 1.7297vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.lower-main-visual {
  position: relative;
}

.lower-main-visual .page-title-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
  font-size: 48px;
  width: 100%;
  color: var(--text-color-02);
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  /* 375 30 1300 48 */
  font-size: clamp(1.875rem, 1.4189rem + 1.9459vw, 3rem);
}

.lower-main-visual .page-title-inner {
  position: relative;
}

.lower-main-visual .page-title-inner .deco {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  max-width: 500px;
}

.lower-main-visual .page-title-inner .page-title {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.lower-main-visual .img-container img {
  -webkit-filter: brightness(0.2);
  filter: brightness(0.2);
}

/* カーテンの動き */
.fead-cover02::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--bg-color-01);
  -webkit-transition: 0.8s;
  transition: 0.8s;
  position: absolute;
  bottom: 0;
  left: auto;
  right: auto;
  z-index: 15;
}

.fead-cover02.mv::before {
  width: 100%;
  height: 0;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

@media(max-width:1024px) {
  .lower-main-visual .page-title-inner .deco {
    max-width: 400px;
  }
}

@media(max-width:599px) {
  .lower-main-visual .page-title-inner .deco {
    max-width: 300px;
    right: -80px;
  }

  .lower-main-visual:before {
    padding-top: 80%;
  }
}

/* ナビ */
nav {
  padding: 20px 0;
  width: 100%;
  position: relative;
  z-index: 90;
  background-color: var(--bg-color-01);
}

.list-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}

.list-gnav li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-left: 1px solid;
  text-align: center;
  font-size: 18px;
}

.list-gnav li:nth-child(2) {
    border-left: none;
}

@media(max-width: 1024px) {
  nav {
    width: 50%;
    height: 100vh;
    display: block;
    overflow-y: scroll;
    padding: 50px;
    -webkit-transition: right ease 0.5s;
    transition: right ease 0.5s;
    position: fixed;
    top: 0;
    right: -90%;
    z-index: 100;
  }

  .drawer-active nav {
    right: 0;
  }

  .list-gnav {
    display: block;
  }

  .list-gnav li {
    text-align: left;
    border-left: none;
    margin-bottom: 1em;
    font-size: 16px;
  }

  .list-gnav li.logo {
    margin-bottom: 2em;
  }

  .list-gnav li a {
    padding-bottom: 0.5em;
  }

  .list-gnav li span {
    padding-bottom: 0.5em;
    display: block;
  }
  
  .list-gnav li span.hide\@tb {
    display: none;
  }  

  .list-gnav h1 {
    display: none;
  }
}

@media(max-width: 599px) {
  nav {
    width: 90%;
    padding: 50px 50px 100px 50px;
  }
}

/* ナビ（ドロップダウンメニュー） */
.drop-menu {
  position: relative;
}

.drop-menu-list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}

.drop-menu:hover .drop-menu-list {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  padding-top: 1em;
}

.list-gnav .drop-menu-list li {
  text-align: left;
  border-left: none;
  white-space: nowrap;
  flex-grow: 0;
}

.list-gnav .drop-menu-list li a{
  display: block;
  width: 100%;
  height: 100%;
}

.list-gnav .drop-menu-list li:nth-child(6) {
  border-right: none;
}

.drop-menu:hover .drop-menu-list li a {
  padding: 0.5em;
  background-color: var(--bg-color-03);
}

.drop-menu .drop-menu-list li a:hover {
  background-color: var(--bg-color-02);
  color: #333;
}


@media(max-width:1024px) {
  .drop-menu-list {
    visibility: visible;
    opacity: 1;
    position: initial;
    margin-top: 1em;
    transform: none;
  }

  .drop-menu:hover .drop-menu-list {
    padding-top: 0;
  }

  .drop-menu:hover .drop-menu-list li a {
    padding: 0 0 0.5em 0;
    background-color: transparent;
  }
}

/* トグル */
.toggle {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
}

.toggle .bar {
  width: 25px;
  height: 2px;
  display: block;
  margin-top: -1px;
  padding: 0;
  text-indent: 9999px;
  background: var(--bg-color-02);
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.toggle .bar:before {
  content: "";
  width: 25px;
  height: 2px;
  display: block;
  background: var(--bg-color-02);
  position: absolute;
  top: -5px;
  left: 0;
}

.toggle .bar:after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background: var(--bg-color-02);
  position: absolute;
  top: 5px;
  right: 0;
}

.drawer-active .toggle .bar {
  background-color: transparent;
}

.drawer-active .toggle .bar:before {
  -webkit-transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  top: 0;
  left: 0;
}

.drawer-active .toggle .bar:after {
  width: 25px;
  -webkit-transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  top: 0;
  left: 0;
}

@media (max-width: 1024px) {
  .toggle {
    display: block;
  }
}


/* オーバーレイ */
.overlay {
  width: 100%;
  height: 100vh;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
}

.drawer-active .overlay {
  display: block;
}

/* フッター */
footer {
  background-color: var(--bg-color-01);
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  position: relative;
  z-index: 100;
}

.lower footer {
  background-image: url('/import/tenant_1/153.121.57.36/html/images/bg_washi.webp');
  background-color: transparent;
  color: var(--text-color-01);
}

.lower footer .btn00{
  background-color: var(--bg-color-01);
  color: var(--text-color-02);
}

.foot-nav li {
  margin-bottom: 1em;
}

.foot-bottom-container .line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: initial;
}

.foot-bottom-container .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: initial;
  margin-right: 1em;
}

.foot-bottom-container .copy {
  font-size: 12px;
  font-family: initial;
}

.fixed-btnwrap01 {
  position: fixed;
  top: 0;
  right: 0;
  font-family: initial;
}

@media(max-width:599px) {
footer {
  z-index: 90;
}    
}

@media(max-width:599px) {
footer {
  padding-top: 70px;
  padding-bottom: 120px;
}    
}

/* 追従ボタン */
.fixed-btnwrap01 li {
  width: 48%;
}

.fixed-btnwrap01 .tel-btnwrap {
  width: 250px;
  border-radius: 0 0 5px 5px;
  background-color: var(--bg-color-01);
  color: #fff;
  font-size: 20px;
  padding: 20px 0;
  height: 100%;
}

.fixed-btnwrap01 .tel-btnwrap.pattern-b {
  background-color: #38757b;
}

.fixed-btnwrap01 .line-btnwrap {
  width: 250px;
  color: #fff;
  height: 100%;
}

.fixed-btnwrap01 .line-btnwrap a {
  color: #fff;
  font-size: 20px;
  padding: 20px 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--bg-color-01);
  border-radius: 5px 5px 0 0;
}

@media(max-width:1024px) {
  .fixed-btnwrap01 {
    top: auto;
    bottom: 0;
  }

  .fixed-btnwrap01 .tel-btnwrap {
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 0 5px #fff;
    box-shadow: 0 0 5px #fff;
  }

  .fixed-btnwrap01 .line-btnwrap {
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 0 5px #fff;
    box-shadow: 0 0 5px #fff;
  }
}

@media(max-width:599px) {
  .fixed-btnwrap01 {
    width: 100%;
  }

  .fixed-btnwrap01 li {
    width: 49%;
    flex-grow: 1;
  }
  
  .fixed-btnwrap01 li+li {
    margin-left: 1%;
  }  

  .fixed-btnwrap01 .tel-btnwrap {
    width: 100%;
  }

  .fixed-btnwrap01 .line-btnwrap {
    width: 100%;
  }
}

.fixed-btnwrap02 {
  position: fixed;
  right: 30px;
  bottom: 120px;
  opacity: 0;
  visibility: hidden;
}

.fixed-btnwrap02 .mail-btnwrap {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
}

.fixed-btnwrap02 .mail-btnwrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.fixed-btnwrap02 .mail-btnwrap .img-wrap {
  position: relative;
}

.fixed-btnwrap02 .mail-btnwrap .img-wrap img {
  -webkit-filter: brightness(0.6);
  filter: brightness(0.6);
}

.fixed-btnwrap02 .mail-btnwrap .img-wrap .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
}

.fixed-btnwrap02 .mail-btnwrap .icon-wrap {
  background-color: #fff;
  height: 100%;
  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;
  color: #333;
  font-size: 80%;
}

@media(max-width:1024px) {
  .fixed-btnwrap02 {
    opacity: 1;
    visibility: visible;
    right: 10px;
    bottom: 100px;
  }

  .fixed-btnwrap02 .mail-btnwrap {
    width: 120px;
    height: 120px;
  }
  
  .fixed-btnwrap02 .mail-btnwrap .img-wrap .text {
    font-size: 14px;
  }  
}

@media(max-width:599px) {}

/* 固定時（.fixedがついたとき） */
.fixed nav {
  position: fixed;
  top: 0;
  left: 0;
}

.fixed .fixed-btnwrap01 {
  top: auto;
  bottom: 0;
}

.fixed .fixed-btnwrap01 .tel-btnwrap {
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 0 0 5px #fff;
  box-shadow: 0 0 5px #fff;
}

.fixed .fixed-btnwrap01 .line-btnwrap {
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 0 0 5px #fff;
  box-shadow: 0 0 5px #fff;
}

.fixed .fixed-btnwrap02 {
  opacity: 1;
  visibility: visible;
}

/*===================================
  container
===================================*/
/* .container01 */
.container01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.container01 .item01 {
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.container01 .item02 {
  width: 50%;
  margin-right: auto;
}

.container01 .item03 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 50px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
}

@media(max-width:599px) {
  .container01 .item01{
    width: 80px;
  }
  
  .container01 .item02 {
    width: calc( 100% - 100px);
    margin-top: 50px;
  }  
  
  .container01 .item03 {
    margin-left: auto;
    margin-right: auto;
  }
}

/* .container02 */
.container02 {
  padding: 20px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--bg-color-02);
}

.container02 .item02 {
  margin-bottom: auto;
}

/* .container03 */
.container03 {
  padding: 20px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--bg-color-03);
}

.container03 .item02 {
  margin-bottom: auto;
}

.round-deco-container {
  position: relative;
}

/* .round-deco-container */
.round-deco-container .deco {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  max-width: 350px;
}

.round-deco-container .deco img {
  opacity: 0.5;
}

/* .flex-container */
.flex-container .title {
  /* 375 18 1300 24 */
  font-size: clamp(1.125rem, 0.973rem + 0.6486vw, 1.5rem);
  margin-bottom: 10px;
}

/* .beforeafter-container */
.beforeafter-container .deco {
  color: #fff;
  text-align: center;
  margin-top: 0.5em;
}

/*===================================
  list
===================================*/
/* .list-circle */
.list-circle .list-inner {
  position: relative;
}

.list-circle .content-wrap {
  position: relative;
  z-index: 1;
  top: -2.5em;
}

.list-circle .content-wrap .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.list-circle .content-wrap .icon {
  text-align: center;
  margin-top: 10px;
  height: 90px;
}

.list-circle .content-wrap .text {
  padding: 0 10px;
  margin-top: 15px;
  text-align: center;
}

.list-circle .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1 / 1;
  z-index: 0;
}

@media(max-width:599px) {
  .list-circle li {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .list-circle .content-wrap {
    top: 0;
  }
}

/* .list-circle02 */
.list-circle02 .list-inner {
  position: relative;
}

.list-circle02 .content-wrap {
  position: relative;
  z-index: 1;
  top: -1em;
}

.list-circle02 .content-wrap .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.list-circle02 .content-wrap .icon {
  text-align: center;
  margin-top: 10px;
  height: 150px;
}

.list-circle02 .content-wrap .text {
  padding: 0 20px;
  margin-top: 15px;
  text-align: center;
}

.list-circle02 .content-wrap .btn {
  position: absolute;
  bottom: -90px;
  right: -30px;
}

.list-circle02 .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1 / 1;
  z-index: 0;
}

@media(max-width:1024px) {
  .list-circle02 .content-wrap .btn {
    right: 0;
    bottom: -70px;
  }
}

@media(max-width:599px) {
  .list-circle02 li+li {
    margin-top: 50px;
  }
}

/* .list-three-col */
.list-three-col .date,
.list-three-col .category {
  color: var(--text-color-01);
  margin-top: 5px;
}

.list-three-col .title {
  margin-top: 5px;
}

.list-three-col.works .category span {
  display: inline-block;
  margin: 1px;
  background-color: #fff;
  color: initial;
  font-weight: bold;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
}

.list-three-col.works .title {
  color: #fff;
}

/* .list-voice */
.list-voice {
  position: relative;
}

.list-voice:before {
  display: block;
  content: "";
  width: 45px;
  aspect-ratio: 45 / 45;
  background: url(../images/deco07.webp) no-repeat;
  position: absolute;
  right: 99%;
  bottom: 15%;
}

.list-voice .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: dotted 4px var(--text-color-01);
  padding-bottom: 20px;
}

.list-voice .item+.item {
  margin-top: 20px;
}

.list-voice .item .label {
  padding: 10px;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.list-voice .item .label:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/deco06.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.list-voice .item .label .label-name {
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.list-voice .item .label .label-date {
  color: var(--text-color-01);
  position: relative;
  z-index: 1;
}

.list-voice .item .title {
  width: 100%;
  margin-left: 30px;
}

@media(max-width:1024px) {
  .list-voice:before {
    bottom: 25%;
  }
}

@media(max-width:599px) {
  .list-voice:before {
    bottom: auto;
    left: 30%;
    top: -7%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

/* .list-voice02 */
.list-voice02 .list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--bg-color-05);
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
}

.list-voice02 .list-inner .paper {
  width: 30%;
}

.list-voice02 .list-inner .content-wrap {
  width: 65%;
  font-weight: bold;
}

.list-voice02 .list-inner .label {
  margin-bottom: 1em;
}

/* .list-check */
.list-check {
  padding: 40px 20px;
  border-radius: 5px;
  background-color: var(--bg-color-02);
}

.list-check li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 2;
}

.list-check li+li {
  margin-top: 0.25em;
}

.list-check li:before {
  content: "\f058";
  margin-right: 0.5em;
  font-family: "Font Awesome 6 Free";
}

.list-check.ver02 {
  background-color: transparent;
  padding: 0;
}

/* .list-skew */
.list-skew .list-inner {
  background-color: var(--bg-color-02);
  padding: 20px;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
}

.list-skew .list-inner .text {
  font-weight: 500;
}

.list-skew .list-inner .num {
  color: #ddd;
  position: absolute;
  top: -70px;
  right: -20px;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  line-height: 1;
  mix-blend-mode: difference;
  /* 375 80 1300 100 */
  font-size: clamp(5rem, 4.4932rem + 2.1622vw, 6.25rem);
}

.list-skew.white .list-inner .num {
  color: var(--bg-color-01);
  mix-blend-mode: initial;
}

@media(max-width:599px) {
  .list-skew .list-inner .num {
    top: -50px;
    right: -10px;
  }
}

/* .list-service */
.list-service .list-inner {
  position: relative;
}

.list-service .list-inner .img-wrap {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.list-service .list-inner .btn-wrap {
  width: 90%;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.list-service .list-inner .btn {
  background-color: var(--bg-color-02);
  padding: 10px 0;
  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;
  border-radius: 5px;
}

.list-service .list-inner .btn .btn-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
}

/* .list-banner */
.list-banner .list-inner .banner-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-banner .list-inner .banner-box a .content-wrap {
  width: 75%;
  background-color: #fff;
  padding: 20px;
}

.list-banner .list-inner .banner-box a .img-wrap {
  width: 25%;
}

/* .list-flow */
.list-flow li+li {
  margin-top: 50px;
}

.list-flow .list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-flow .list-inner .img {
  width: 40%;
}

.list-flow .list-inner .content-wrap {
  width: 55%;
}

.list-flow .list-inner .title {
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.list-flow .list-inner .title .num {
  background-color: var(--bg-color-02);
  color: #fff;
  width: 3em;
  height: 3em;
  border-radius: 100%;
  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;
  margin-right: 0.5em;
}

/* .list-flow.ver02 */
.list-flow.ver02 .item:nth-child(even) .list-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.list-flow.ver02 .list-inner .img {
  width: 45%;
}

.list-flow.ver02 .list-inner .content-wrap {
  width: 45%;
}

/* .list-flow02 */
.list-flow02 .item+.item {
  margin-top: 50px;
}

.list-flow02 .item:nth-child(even) .list-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.list-flow02 .list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-flow02 .list-inner .img-wrap {
  width: 45%;
}

.list-flow02 .list-inner .content-wrap {
  width: 45%;
}

.list-flow02 .list-inner .title {
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.list-flow02 .list-inner .title .num {
  background-color: var(--bg-color-02);
  color: #fff;
  width: 3em;
  height: 3em;
  border-radius: 100%;
  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;
  margin-right: 0.5em;
}

@media(max-width:599px) {
  .list-flow02 .list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .list-flow02 .item:nth-child(even) .list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .list-flow02 .list-inner .img-wrap {
    width: 100%;
    margin-bottom: 10px;
  }

  .list-flow02 .list-inner .content-wrap {
    width: 100%;
  }
}

/* .list-faq */
.list-faq .faq-qa+.faq-qa {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.list-faq .faq-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-faq .faq-q .label {
  font-family: "Tinos", serif;
  font-size: 36px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
}

.list-faq .faq-q .text {
  width: 100%;
  margin: 0 30px;
}

.list-faq .faq-q .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 1em;
  height: 1em;
}

.list-faq .faq-q .btn:before {
  display: block;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0;
  right: 0;
}

.list-faq .faq-qa.action .faq-q .btn:before {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.list-faq .faq-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-faq .faq-a .label {
  font-family: "Tinos",
    serif;
  font-size: 36px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
}

.list-faq .faq-a .text {
  width: 100%;
  margin: 0 30px;
}

@media(max-width:599px) {
  .list-faq .faq-qa+.faq-qa {
    margin-top: 15px;
    padding-top: 15px;
  }
}

/* .list-faq.lower */
.list-faq.lower .faq-qa+.faq-qa {
  margin-top: 10px;
  padding-top: 10px;
}

/* .list-staff */
.list-staff .list-inner .img-wrap {
  position: relative;
}

.list-staff .list-inner .img-wrap .name-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  padding: 20px 10px;
}

.list-staff .list-inner .img-wrap .name-wrap .post {
  font-size: 14px;
}

.list-staff .list-inner .comment {
  margin-top: 10px;
}

.list-staff .list-inner .btn {
  font-weight: bold;
  margin-top: 10px;
  text-align: right;
}

.list-staff .list-inner .btn::before {
  content: ">>";
}

.list-staff.white .list-inner .comment {
  color: #fff;
}

.list-staff.white .list-inner .btn {
  color: #fff;
}

@media(max-width:599px) {
  .list-staff .list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .list-staff .list-inner .img-wrap {
    width: 50%;
  }

  .list-staff .list-inner .content-wrap {
    width: 45%;
  }
}

/* .list-news */
.list-news li {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: #fff;
  font-weight: bold;
}

.list-news li a {
  display: block;
  padding: 0 20px 20px 20px;
}

.list-news li+li {
  margin-top: 20px;
}

/* .list-works */
.list-works .list-inner .content-wrap {
  padding: 20px;
  background-color: #fff;
}

.list-works .list-inner .content-wrap .date {
  text-align: right;
}

.list-works .list-inner .content-wrap .title {
  font-size: 20px;
  margin-bottom: 5px;
}

.list-works .list-inner .content-wrap .category {
  margin-bottom: 20px;
}

.list-works .list-inner .content-wrap .category span {
  display: inline-block;
  font-size: 12px;
  padding: 0.25em 0.5em;
  background-color: var(--bg-color-01);
  color: #fff;
  margin: 1px;
  border-radius: 3px;
  font-weight: bold;
}

.list-works .list-inner .content-wrap .btn {
  text-align: right;
  font-weight: bold;
}

.list-works .list-inner .content-wrap .btn::before {
  content: ">>";
}

@media(max-width:599px) {
  .list-works .list-inner .content-wrap .title {
    font-size: 16px;
  }  
  
  .lower.works .list-works .list-inner {
    display: block;
  }

  .lower.works .list-works .list-inner .img-wrap {
    width: 100%;
  }

  .lower.works .list-works .list-inner .content-wrap {
    width: 100%;
  }
}

/* .list-works.recommend */
@media(max-width:1024px) {
  .list-works.recommend li:nth-child(3) {
    display: none;
  }
}

/* .list-blog */
.list-blog li+li {
  margin-top: 20px;
}

.list-blog .list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-blog .list-inner .img-wrap {
  width: 40%;
}

.list-blog .list-inner .content-wrap {
  width: 55%;
  font-weight: bold;
}

.list-blog .list-inner .content-wrap .btn {
  text-align: right;
  margin-top: 20px;
}

.list-blog .list-inner .content-wrap .btn::before {
  content: ">>";
}

/* .list-blog02 */
.list-blog02 li a {
  background-image: url('/import/tenant_1/153.121.57.36/html/images/deco.webp');
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.list-blog02 li a .list-inner {
  padding: 40px;
}

.list-blog02 li a .list-inner .img-wrap {
  border-radius: 5px;
  overflow: hidden;
}

.list-blog02 li a .list-inner .content-wrap {
  font-weight: bold;
  margin-top: 20px;
}

.list-blog02 li a .list-inner .content-wrap .date {
  text-align: right;
  font-size: 14px;
}

.list-blog02 li a .list-inner .content-wrap .btn {
  text-align: right;
  margin-top: 10px;
}

.list-blog02 li a .list-inner .content-wrap .btn::before {
  content: ">>";
}

@media(max-width:1024px) {
  .list-blog02.filter li:nth-child(4) {
    display: none;
  }
}

@media(max-width:599px) {
  .list-blog02 li a .list-inner .content-wrap {
    margin-top: 10px;
  }

  .list-blog02 li a .list-inner .content-wrap .title {
    font-size: 14px;
  }

  .list-blog02 li a .list-inner .content-wrap .btn {
    margin-top: 5px;
    font-size: 12px;
  }
  
  .list-blog02 li a .list-inner .content-wrap .date {
    font-size: 12px;
  }  

  .list-blog02.filter li:nth-child(4) {
    display: block;
  }
}

/* .list-blog02.recommend */
.list-blog02.recommend li:nth-child(4) {
  display: none;
}

@media(max-width:1024px) {
  .list-blog02.recommend li:nth-child(3) {
    display: none;
  }
}

/* .list-address */
.list-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}

.list-address dt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1em;
}

.list-address dd {
  width: 10%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.map {
  padding-top: 70%;
}

.map.ver02 {
  padding-top: 70%;
}

@media(max-width:599px) {
  .map.ver02 {
    padding-top: 100%;
  }
}


/* .list-youkou */
.list-youkou li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid;
}

.list-youkou .title {
  width: 25%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.list-youkou .content {
  width: 70%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.list-youkou .detail-list li {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.list-youkou.white li {
  color: #fff;
}

.list-youkou .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-youkou .detail-item dt {
  width: 10em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.list-youkou .detail-item+.detail-item {
  padding-top: 0.5em;
  border-top: 1px solid;
}

@media(max-width:599px) {
.list-youkou .detail-list li {
  font-size: 14px;
}

.list-youkou.recruit_detail .title{
  width: 35%;
}

.list-youkou.recruit_detail .content{
  width: 65%;
  flex-grow: 0;
}
}

/* .list-cross */
.list-cross li+li {
  margin-top: 30px;
}

.list-cross li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.list-cross li .img-wrap {
  width: 30%;
}

.list-cross li .content-wrap {
  width: 70%;
  padding: 30px;
  background-color: var(--bg-color-02);
}

.list-cross li .content-wrap .title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
  /* 375 18 1300 24 */
  font-size: clamp(1.125rem, 0.973rem + 0.6486vw, 1.5rem);
}

.list-cross li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media(max-width:599px) {
  .list-cross li+li {
    margin-top: 15px;
  }

  .list-cross li .content-wrap {
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
  }

  .list-cross li .img-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}

/* .list-recruit */
.list-recruit .list-inner {
  position: relative;
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 5px;
  overflow: hidden;
}

.list-recruit .list-inner .content-wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.list-recruit .list-inner .content-wrap dl dt {
  width: 4em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1em;
  font-weight: bold;
}

.list-recruit .list-inner .btn {
  text-align: right;
  margin-top: 20px;
}

.list-recruit .list-inner .btn::before {
  content: ">>";
}

/*===================================
  detail
===================================*/
/* .newsblogdetail */
.newsblogdetail {
  padding: 50px;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--bg-color-02);
}

.newsblogdetail .date {
  font-weight: bold;
}

.newsblogdetail .category {
  text-align: right;
}

.newsblogdetail .category span {
  display: inline-block;
  padding: 0.25em 1em;
  background-color: var(--bg-color-01);
  font-size: 12px;
  color: #fff;
  border-radius: 0.25em;
  margin: 1px;
}

.newsblogdetail .title {
  font-size: 1.2em;
  font-weight: bold;
  padding-bottom: 0.5em;
  margin-top: 0.5em;
  margin-bottom: 1em;
  border-bottom: 1px solid;
}

@media(max-width:599px) {
  .newsblogdetail {
    padding: 20px;
  }
}

/* .voivedetail */
.voicedetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.voicedetail .paper {
  width: 45%;
}

.voicedetail .content-wrap {
  width: 45%;
}

.voicedetail .content-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.voicedetail .content-wrap .item+.item {
  margin-top: 0.5em;
}

.voicedetail .content-wrap .item dt {
  font-weight: bold;
  width: 30%;
}

.voicedetail .content-wrap .item dd {
  width: 65%;
  font-size: 1.2em;
}

.voicedetail .content-wrap .comment-wrap {
  background-color: var(--bg-color-05);
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  margin-top: 20px;
}

.voicedetail .content-wrap .comment-wrap .title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

@media(max-width:599px) {
  .voicedetail .paper {
    width: 80%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .voicedetail .content-wrap {
    width: 100%;
  }

  .voicedetail .content-wrap .item dd {
    font-size: 1em;
  }
}

/* .worksdetail */
.worksdetail .title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
}

.worksdetail .category span {
  display: inline-block;
  margin: 1px;
  background-color: var(--bg-color-02);
  color: #fff;
  font-weight: bold;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  font-size: 14px;
}

.worksdetail .area {
  margin: 1px;
  background-color: var(--bg-color-03);
  color: #fff;
  font-weight: bold;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 14px;
}

.worksdetail .before {
  position: relative;
}

.worksdetail .before::before {
  content: "Before";
  display: block;
  position: absolute;
  top: -0.5em;
  left: -0.5em;
  z-index: 1;
  font-size: 20px;
  font-weight: bold;
}

.worksdetail .after {
  position: relative;
}

.worksdetail .after::before {
  content: "After";
  display: block;
  position: absolute;
  top: -0.5em;
  left: -0.5em;
  z-index: 1;
  font-size: 20px;
  font-weight: bold;
}

.worksdetail .comment {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--bg-color-03);
  color: #fff;
}


/*===================================
  slider
===================================*/
#slide01 .slick-slide,
#slide02 .slick-slide,
#slide03 .slick-slide{
  padding-left: 10px;
  padding-right: 10px;
}

#slide01 .slick-prev,
#slide02 .slick-prev,
#slide03 .slick-prev{
  top: 45%;
  left: 90px;
  z-index: 1;
  width: 50px;
  height: 50px;
  background-color: var(--bg-color-01);
  border-radius: 100%;
}

#slide01 .slick-prev:before,
#slide02 .slick-prev:before,
#slide03 .slick-prev:before{
  content: "\f104";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 16px;
}

#slide01 .slick-next,
#slide02 .slick-next,
#slide03 .slick-next{
  top: 45%;
  right: 90px;
  z-index: 1;
  width: 50px;
  height: 50px;
  background-color: var(--bg-color-01);
  border-radius: 100%;
}

#slide01 .slick-next:before,
#slide02 .slick-next:before,
#slide03 .slick-next:before{
  content: "\f105";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 16px;
}

#slide01 .slick-track,
#slide02 .slick-track,
#slide03 .slick-track{
  margin-left: 0;
}

@media(max-width:599px) {

  #slide01 .slick-prev,
  #slide02 .slick-prev,
  #slide03 .slick-prev{
    left: 10px;
  }

  #slide01 .slick-next,
  #slide02 .slick-next,
  #slide03 .slick-next{
    right: 10px;
  }
}

/* モーダル */
.modal-01{
  width: 90%;
  visibility: hidden;
  opacity: 0;
  height: 0;
  z-index: -1;
  position: fixed;
  bottom: 120px;
  left: 5%;
  right: 5%;
  background-color: var(--bg-color-02);
  color: var(--text-color-01);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

.active-modal-01 .modal-01{
  visibility: visible;
  opacity: 1;
  height: auto;
  z-index: 1
}

@media (max-width: 599px) {
  .switch-modal-01 a {
    pointer-events: none;
  }
}

.modal-phone-btn a{
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.5em;
  background-color: var(--bg-color-01);
  color: var(--text-color-02);
  border-radius: 5px;
  padding: 5px;
  margin-top: 5px;
}

.modal-phone-btn a::before{
  content: "\f2a0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  margin-right: 10px;
}

.modal-back-btn{
  border: 1px solid var(--text-color-01);
  border-radius: 5px;
  padding: 5px;
  margin-top: 5px;
}

.modal-back-btn::before{
  content: "\f137";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  margin-right: 10px;
}

[data-element-id] .modal-01{
  visibility: visible;
  opacity: 1;
  height: auto;
  z-index: 1;
  position: initial;
  transform: none;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

/*===================================
  見たまま編集画面用
===================================*/
[data-element-id].list-gnav{
  flex-wrap: wrap;
}

[data-element-id].drop-menu-list {
  visibility: visible;
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  border: 1px solid red;
}

[data-element-id].drop-menu-list:after {
  content: "ドロップダウンで表示";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  color: #fff;
  text-align: center;
  font-size: 10px;
  width: 100%;
  padding-top: 1em;
}

[data-element-id].drop-menu:hover .drop-menu-list {
  padding-top: 0;
  transition: none;
}

[data-element-id].drop-menu:hover .drop-menu-list li a {
  padding: 0;
}

[data-element-id] .show\@sp {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

[data-element-id].title00.show\@sp .text {
  font-size: 22px;
}

[data-element-id].title01.show\@sp {
  font-size: 27px;
}

[data-element-id].show\@sp .title02 {
  font-size: 18px;
}

[data-element-id].text-responsive{
  font-size: 18px;
}

[data-element-id]#slide01>div{
  display: flex;
  flex-wrap: wrap;
}

[data-element-id]#slide01>div>li{
  width: 20%;
}

[data-element-id]#slide02>div{
  display: flex;
  flex-wrap: wrap;
}

[data-element-id]#slide02>div>li{
  width: 20%;
}

[data-element-id].fead-cover02::before {
  content: none;
}

[data-element-id].lower-main-visual .page-title-container .page-title.show\@sp{
  font-size: 30px;
}

[data-element-id].fixed-btnwrap01 {
  position: relative;
  justify-content: flex-start;
  width: fit-content;
  margin-left: auto;
  padding-top: 30px;
  border: 5px solid;
}

[data-element-id].fixed-btnwrap01::before {
  content: "追従ボタン";
  display: block;
  background-color: #fff;
  color: var(--text-color-01);
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

[data-element-id].fixed-btnwrap01 li {
  width: fit-content;
}

[data-element-id].fixed-btnwrap02 {
  opacity: 1;
  visibility: visible;
  position: relative;
  bottom: 0;
  width: fit-content;
  margin-left: auto;
  position: relative;
  border: 5px solid;
}

[data-element-id].fixed-btnwrap02::before {
  content: "追従ボタン";
  display: block;
  background-color: #fff;
  color: var(--text-color-01);
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

[data-element-id].v-writing .show\@tb{
  writing-mode: initial;
}

[data-element-id].main-visual .catchcopy.show\@sp{
  position: initial;
  background-color: var(--bg-color-01);
  font-size: 40px;
}

[data-element-id].list-service .list-inner .btn-wrap {
  position: initial;
  transform: none;
  width: 100%;
}

[data-element-id].list-banner .list-inner .banner-box a {
  display: block;
}

[data-element-id].list-banner .list-inner .banner-box a .content-wrap {
  width: 100%
}

[data-element-id].list-banner .list-inner .banner-box a .img-wrap {
  width: 100%;
}

[data-element-id].tel2{
  background-color: var(--text-color-01);
  color: #fff;
}

[data-element-id].btn00.white a:hover{
  color: var(--text-color-01);
}

[data-element-id].modal-01{
  position: relative;
  border: 1px solid red;
  padding-top: 1em;
  margin-top: 50px;
}

[data-element-id].modal-01::before{
  content: "追従する電話番号をタップで表示されます";
  font-size: 14px;
  background: red;
  color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

[data-element-id].modal-phone-btn{
  position: relative;
  border: 1px solid red;
  padding-top: 1em;
}

[data-element-id].modal-phone-btn::before{
  content: "追従する電話番号が自動で表示されます";
  font-size: 14px;
  background: red;
  color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

/* 2025/01/29 */

@media screen and (max-width:599px) {
.list-blog02.recommend li a{
  background-size: cover;
}

.list-blog02.recommend li a .list-inner .content-wrap .date{
  margin-right: 15px;
}

.list-blog02.recommend li a .list-inner .content-wrap .btn{
  margin-right: 15px;
}
}
