@charset "utf-8";
/* CSS Document */
/* 目次 
* リセット
* 共通（レイアウト・テキスト・見出し・ボタン・ヘッダー・フッター・ぱんくず・その他)
* TOP
* 下層共通 ※変更不可
*/
/*=================== モバイルファースト ==================*/
/**************************************************
* 共通（レイアウト・テキスト・見出し・ボタン・ヘッダー・フッター・ぱんくず・その他)
***************************************************/
/*------------------------------
レイアウト ※変更不可
------------------------------*/
.sp {
  display: block;
}
.tb {
  display: none;
}
.pc {
  display: none;
}
#container {
  margin: 0;
  padding: 0;
  position: relative;
}
/*フッター位置調整*/
/*wrap共通*/
.wrap, .wrap-l, .wrap-m, .wrap-s {
  margin: 0 auto;
}
.wrap {
  padding-bottom: 30px;
}
.wrap-l {
  width: 100%;
}
.wrap-m {
  max-width: 1300px;
  width: 92%;
}
.wrap-s {
  max-width: 800px;
  width: 88%;
}
.flex-box {
  display: flex;
  flex-wrap: wrap;
}
/*------------------------------
テキスト ※変更不可
------------------------------*/
p, a, li, th, td, dt, dd {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #FFF;
}
.lead {
  font-size: 16px;
  font-size: 1.6rem;
}
.lead-s {
  font-size: 14px;
  font-size: 1.4rem;
}
.text-s {
  font-size: 12px;
  font-size: 1.2rem
}
.font-yu {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Hiragino Mincho ProN", Century, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
/*------------------------------
見出し h1-h6 ※変更不可
------------------------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
  font-weight: normal;
}
h1 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: normal;
}
h2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.1;
}
h3 {
  font-size: 28px;
  font-size: 2.8rem;
}
h4 {
  font-size: 26px;
  font-size: 2.6rem;
}
h5 {
  font-size: 24px;
  font-size: 2.4rem;
}
h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

/*------------------------------
  文字の改行位置 ※変更不可
  ------------------------------*/
.text-break {
  display: inline-block;
  white-space: normal;
 overflow-wrap: anywhere;
  max-width: 190px;
}


#property .text-break.is-en {
  max-width: 330px;
}

/*------------------------------
ボタン ※変更不可
------------------------------*/
/* 共通 */
.btn-box {
  text-align: center;
  margin: 20px auto 30px;
}
.btn-box .btn {
  display: inline-block;
  margin: auto;
  padding: 10px 2rem;
  font-weight: normal;
  /*  border: 2px solid #333;*/
  color: #333;
  transition: 0.5s;
  font-size: 15px;
  font-size: 1.5rem;
  border-radius: 6px;
  background: #fff;
  transition: all .3s ease-in-out;
}
.btn-box .btn:hover {
  color: #fff;
  background: #989898;
}
.btn-box .btn--apply {
  padding: 10px 2rem;
  width: 80%;
}

/* 矢印ボタン */
.btn-arrow {
  width: 20%;
  margin: 0 0 0 auto;
}
/* MOREボタン　採用情報 */
.btn-more {
  width: 30%;
  margin: 0 0 0 auto;
}
/* 戻る矢印ボタン */
.btn-back {
  width: 100%;
  max-width: 200px;
  margin: 20px auto;
  text-align: center;
  position: relative;
}
.btn-back .link-icon-l {
  position: absolute;
  top: 0;
  left: 0;
}
/*英語ページ*/
/*BACK TO LIST*/
.btn-back.is-en {
  max-width: 230px;
}
/*BACK TO HOME*/
 .btn-back.btn-back-long.is-en {
  max-width: 238px;
}

/*----------------
text-link-arrow
------------------*/
.text-link-arrow {
  padding-right: 30px;
  position: relative;
  text-align: right;
}
/*矢印と下線の形状*/
.text-link-arrow a::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 11px;
  right: 0;
  /*下線の形状*/
  width: 20px;
  height: 1px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all .3s;
}
.text-link-arrow a::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 8px;
  right: 0;
  /*矢印の形状*/
  width: 10px;
  height: 1px;
  background: #fff;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*----------------
text-link-arrow
------------------*/
/*------------------------------
フッター ※変更不可
------------------------------*/

#footer {
  width: 100%;
  padding: 0px 80px 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0 0 0 auto;
}


#footer .img-box {
  width: 25%;
  margin: 2rem auto;
}
#footer p {
  text-align: center;
  color: #b6a9a0;
  font-size: 24px;
  font-size: 2.4rem;
}
#footer .tel a {
  color: #b6a9a0;
  font-size: 24px;
  font-size: 2.4rem;
}
#footer .f-nav-list .menu-list, #breadcrumbs {
  margin-bottom: 30px;
}
#footer .f-nav-list li a {
  font-size: 14px;
  font-size: 1.4rem;
  transition: 0.5s;
}
#footer .f-nav-list li {
  margin-bottom: 15px;
}
#footer .f-nav-list li:last-child {
  margin-bottom: 0;
}
/* copyright */
#footer .copyright {
  text-align: center;
}
#footer .copyright a {
  font-size: 16px;
  font-size: 1.6rem;
  transition: 0.5s;
  display: block;
  color: #5f5f5f;
}
/*------------------------------
ぱんくず ※変更不可
------------------------------*/
#breadcrumbs li {
  display: inline;
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
}
#breadcrumbs li.current-item {
  color: #005627;
}
#breadcrumbs li a {
  color: #333;
}
#breadcrumbs li a span:hover, #breadcrumbs li a span:active {
  transition: all .3s;
}
#breadcrumbs a {
  display: inline-block;
  position: relative;
  margin-right: 1.5em;
  cursor: unset;
}
#breadcrumbs a:after {
  content: "/";
  vertical-align: middle;
  position: absolute;
  right: -6px;
  width: 6px;
  height: 6px;
  margin: auto -10px;
}
#breadcrumbs a span {
  cursor: pointer;
}
/*------------------------------
スプリット内　タイトル部分
------------------------------*/
.split h2 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: normal;
  font-family: 'Hind', sans-serif;
  letter-spacing: 0.08em;
}
/*英語ページタイトル*/
.split h2.is-en {
  letter-spacing: 0.02em;
	line-height: 1.2;
}

 

.ttl-box {
  /*  width: fit-content;*/
  width: 100%;
  margin: auto auto 20px;
  display: flex;
  align-content: flex-end;
  flex-direction: column;
}
.square-icon span {
  color: #FFF;
}
.ttl-box .subttl {
  color: #FFF;
  text-align: center;
}
.kv .ttl-box .subttl {
  text-align: right;
}
/*トップ、四角ボタン 右矢印*/
.link-icon {
  position: relative;
  display: block;
  /*  background: #333;*/
  color: #FFF;
  width: 50px;
  height: 30px;
  margin: 0 0 0 auto;
}
.link-icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 30px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}
.link-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}
.link-icon:hover {
  /*  background: #005627;*/
}
.link-icon:hover::before {
  right: 10px;
  width: 40px;
}
.link-icon:hover::after {
  right: 10px;
}
/*トップ、四角ボタン 左矢印*/
.link-icon-l {
  position: relative;
  display: block;
  /*  background: #333;*/
  color: #FFF;
  width: 50px;
  height: 30px;
  margin: auto;
}
.link-icon-l::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  width: 30px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}
.link-icon-l::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 1px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}
.link-icon-l:hover {
  /*  background: #005627;*/
}
.link-icon-l:hover::before {
  left: 10px;
  width: 40px;
}
.link-icon-l:hover::after {
  left: 10px;
}
/*テキストリンク 色変え*/
.txt-link {
  position: relative;
  display: inline-block;
  color: #fff;
  width: 100%;
  margin-left: auto;
}
.txt-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: .3s;
}
.txt-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-135deg);
  transition: .3s;
}
.txt-link:hover::before {
  right: 0px;
  width: 30px;
}
.txt-link:hover::after {
  right: 0px;
}
.txt-link.more {
  display: flex;
  align-items: center;
  width: 100px;
  font-weight: 600;
}
/*=================== 共通 /ヘッダー/フッター 320用 ==================*/
@media screen and (max-width: 320px) {
  .wrap-m, .wrap-s {
    width: 96%;
  }
  /*------------------------------
  見出し h1-h6 ※変更不可
  ------------------------------*/
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.7;
    font-weight: 300;
  }
  h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.1;
  }
  h3 {
    font-size: 20px;
    font-size: 2.0rem;
  }
  h4 {
    font-size: 19px;
    font-size: 1.9rem;
  }
  h5 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  /*------------------------------
  テキスト ※変更不可
  ------------------------------*/
  p, a, li, th, td, dt, dd {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .lead {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .lead .lead-s {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .text-s {
    font-size: 10px;
    font-size: 1.0rem
  }
  /*------------------------------
  ボタン  ※変更不可
  ------------------------------*/
  .f-contactbox .cv-btn {
    padding: 3% 12px;
  }
  .f-contactbox .cv-btn.mail {
    font-size: 18px;
    font-size: 1.8rem;
  }
  /*------------------------------
  スプリット内　タイトル部分
  ------------------------------*/
  .split h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
/*=================== 共通 /ヘッダー/フッター 320用 閉じ ==================*/
/**************************************************
* TOP
***************************************************/
#top .split .ttl-box {
  position: relative;
  margin: auto;
}
#top .split .ttl-box .subttl {
  text-align: left;
}
#top .split .split-right-body {
  padding: 70px 0 70px;
}
#top .split .ttl-box .subttl {
  position: relative;
}
#top .split .ttl-box .link-icon {
  position: absolute;
bottom: -14px;
right: -16px;
}


/*------------------------------
kv
------------------------------*/
#top.wrapper {
  background-color: #aeaeae;
}
#top .bg-img {
  background-image: url("../images/top/top_back.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#top .kv .split-right-body {
  /*  margin-top: 25px;
  margin-bottom: 30px;*/
}
#top .kv .split-right-body .kv-ttl .icon-box {
  position: relative;
}
#top .kv .split-right-body .kv-ttl .ttl.img-box {
  width: 50%;
  margin: 0 auto 0 20%;
}
#top .kv .split-right-body .kv-ttl .text {
  width: 100%;
  margin: auto 0 auto auto;
}
#top .kv .split-right-body .kv-ttl .text {
  margin-top: 30px;
  line-height: 2;
}
#top .kv .split-right-body .kv-ttl .text span {
  color: #005627;
}
#top .kv .split-right-body .icon.img-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  max-width: 40px;
  height: auto;
}
/*------------------------------
con01
------------------------------*/


#top .con01 .split-right-body .property-wrap {
  width: 100%;
  padding-top: 10%;
}

#top .con01 .split-right-body .toproperty {
        width: 190px;
        margin: 30px 0 100px auto;
}


#top .con01 .split-right-body .property-wrap h3 {
  font-size: 18px;
  font-size: 1.8rem;
}
.slide-arrow {
  position: absolute;
  top: 115%;
  margin-top: -15px;
}

 


/*------------------------------
Gsap
------------------------------*/


#top .js-area{
  overflow: hidden;
}
#top .gsap-wrap{
  display: flex;
}
#top .item{
/*  height: 100vh;*/
  display: flex;
  justify-content: center;
  align-items: center;
}


/*画像のアスペクト比を調整*/
#top .gsap-item-inner{
aspect-ratio: 1/1;
width: 90%;
}
#top .gsap-item-inner .object-fit{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
	
}

	 
@media (max-width: 599px) {
.works-inner.js-area {
  height: auto !important;  /* GSAPが付けた高さを上書き */
     max-height: 640px;            /* 上限だけ設定 */
    overflow: hidden; 
	    padding: 70px 20px 100px!important;
}

}

 




/*背景色を変える*/ 
#top .change {
/*  background-color: hotpink;*/
  background-color: rgba(205,190,180,0.6);
}

 
#top .con01 .split-right-body .property-wrap ul li.property-box-item {
  margin: 0 0.5% !important;
}

#top .con01 .split-right-body .property-wrap ul li.property-box-item {
  margin: 10px !important; /*画像の周りに余白*/
  /*width:95%!important;*/
  box-shadow: 6px 6px 4px 2px rgba(119, 101, 101, .3);
}

#top .con01 .split-right-body .toproperty p {
  text-align: right;
  font-size: 18px;
  font-size: 1.8rem;
  margin-right: 60px;
}
#top .con01 .split-right-body .toproperty .toproperty-icon {
  position: relative;
  display: inherit;
  color: #FFF;
  width: 50px;
  height: 30px;
  left: 90px;
  margin: 0 0 0 auto;
}
#top .con01 .split-right-body .toproperty-txt .toproperty-icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80px;
  margin: auto;
  width: 45px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}
#top .con01 .split-right-body .toproperty-txt .toproperty-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  margin: auto;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}
#top .con01 .split-right-body .toproperty-txt:hover .toproperty-icon::before {
  left: -80px;
  width: 65px;
}
#top .con01 .split-right-body .toproperty-txt:hover .toproperty-icon::after {
  left: -30px;
}
/*------------------------------
con04
------------------------------*/
#top .con04.split .ttl-box .link-icon {
  top: 110%;
}
#top .con04.split .split-right-body {
  padding-bottom: 150px;
}
/*------------------------------
con05
------------------------------*/
#top .con05 .split-left-body a {
  position: relative;
  display: block;
}
#top .con05 .split-left-body .ttl-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin-bottom: 0;
}

#top .split .split-right-body {
  padding: 120px 20px 140px;
}
#top .con01.split .split-right-body{
  padding: 0;
}

#top .con01.split .works-inner{
  padding: 120px 20px 140px;
}

#top .con05 .split-right-body .ttl-box {
  margin-bottom: 50px;
}


/**************************************************
* newsList共通（TOP・category）
***************************************************/
.newsList {
  width: 100%;
  margin: 10px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsList li {
  width: 100%;
  border-bottom: 1px solid #fff;
  margin: 0 0 20px;
  padding: 15px 0 20px;
}
#top .newsList li:first-of-type {
  border-top: 1px solid #fff;
  padding-top: 20px;
}
.newsList li .ttl {
  font-size: 1.6rem;
  line-height: 1.7;
}

.newsList li a {
  display: block;
  height: 100%;
}
.newsList li p.date {
  font-family: 'Hind', sans-serif;
  letter-spacing: 0.08em;
}
.newsList .detail-box .date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.newsList .detail-box .ttl {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.open .newsList li {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #F1F1F1;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}
.open .newsList li:hover {
  background-color: #F3F3F3;
}
.open .newsList .category {
  color: #005627;
  font-weight: normal;
  font-style: italic;
  margin-right: 10px;
}
.open .newsList .date, #news .date {
  color: #D2D2D2;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.open .newsList .ttl, .open .newsList .cont {
  color: #000000;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.open .newsList .cont {
  color: #8C8C8C;
  font-size: 14px;
  font-size: 1.4rem;
}
/**************************************************
* #article .open 店舗オープン情報
***************************************************/
/*
#article.open .newsList li:hover {
  background-color: #F3F3F3;
}
#article.open .newsList .category {
  color: #005627;
  font-weight: normal;
  font-style: italic;
  margin-right: 10px;
}
#article.open .newsList .date, #news .date {
  color: #D2D2D2;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
#article.open .newsList .ttl, #article.open .newsList .cont {
  color: #000000;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
#article.open .newsList .cont {
  color: #8C8C8C;
  font-size: 14px;
  font-size: 1.4rem;
}
*/


/**************************************************
* 下層共通 ※変更不可
***************************************************/
.page {
  background-color: #cdbeb4;
}
.page .kv {
  padding-top: 70px;
}
/* スプリット */
.page .bg-leftbrown {}
.page .bg-rightbrown {
  background-image: url(../images/common/back-img.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
.page .bg-White {
  background-color: #FFF;
}
.page .bg-right-beige {
  background-color: #cdbeb4;
}
.page .padding-wrap {
  padding: 6% 4% 16% 4%;
}
#requirements.page .kv .split-left-body, #member.page .kv .split-left-body, #blog.page .kv .split-left-body, #privacy.page .kv .split-left-body, #sitemap.page .kv .split-left-body, #article.page .kv .split-left-body, #page .con01 .split-left-body {
  /* padding: 0% 4%; */
}
/* スプリット内　タイトルの高さ */
.page .split .ttl-box {
  padding: 120px 20px 140px;
  align-items: center;
}
.page .kv.split .split-fixed {
  padding: 0;
}

/* コンテンツタイトル */
.page .kv .ttl-box {
  margin: 0 auto 0 0;
}
.page .ttl-box {
  margin: auto;
}
#message .kv .split-right-body .img-box, #history .kv .split-right-body .img-box, #aboutus .kv .split-right-body .img-box, #partner .kv .split-right-body .img-box {
  position: relative;
  right: -12%;
  margin-bottom: 40px;
}




/*ドット表示*/
.dot-text {
  position: relative;
  padding-left: 1em;
}

.dot-text::before {
  content: "•"; 
  position: absolute;
  left: 0;
/*  top: 0.1em;*/
  font-size: 1em;
}

/*注釈*/
.note {
  position: relative;
  padding-left: 1em;
 color:  #E2E2E2;
}

.note::before {
  content: "※"; 
  position: absolute;
  left: 0;
  font-size: 1em;
}
/*テキストリンク*/
 .text-underline{
	text-decoration: underline;
	transition: all .3s ease-in-out;
	 color: #fff;
}
.text-link:hover{
	text-decoration: none;
	opacity: 0.8;
}





/*------------------------------
下線タイプテーブル dl dt dd
------------------------------*/

.border-table {
  margin-bottom: 50px;
}
.border-table dl {
  border-bottom: solid 1px #E2E2E2;
padding:30px 0 35px;
}
.border-table dt {
  padding-bottom: 20px;
  font-weight: 600;
}
.border-table .pt-top-0 {
  padding-top: 0;
}





/**************************************************
* 会社紹介 #company
***************************************************/
/*------------------------------
con01 con03共通
------------------------------*/
.overviewTable {
  margin-bottom: 50px;
}
.overviewTable dt, .overviewTable dd {
  padding-bottom: 15px;
}
.overviewTable dt {
  padding-top: 15px;
  font-weight: 600;
}
.overviewTable dt:first-of-type {
  padding-top: 0;
}
.overviewTable dd {
  border-bottom: solid 1px #E2E2E2;
}
.overviewTable .business-details .txt {
  margin-left: 10px;
}
.overviewTable .business-details .txt:nth-child(2) {
  margin-bottom: 15px;
}

dl .contact p {
  width: 50%;
}

.overviewTable--address{
    margin-bottom: 10px;
}


/*------------------------------
kv
------------------------------*/
#company .kv {
  flex-direction: column-reverse;
}
#company .kv .split-right-body {
  margin: 0 auto 0 0;
  padding: 6% 4%;
}
#company .kv .split-right-body .ttl-box {
  padding: 0;
}
/*------------------------------
con01 
------------------------------*/
#company .con01.overview .group.img-box {
  max-width: 500px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}

#company .con01 .split-right-body .large .img-box {
  position: relative;
}
#company .con01 .split-right-body .large .img-box a {
  display: block;
  height: 18vh;
}
#company .con01 .split-right-body .large .img-box a img {
  height: 100%;
  object-fit: cover;
}
/*------------------------------
con02
------------------------------*/
#company .con02 .split-right-body .overviewTable dd:last-child {
  padding-top: 20px;
  padding-bottom: 20px;
}
/**************************************************
* 代表メッセージ #message
***************************************************/
/*------------------------------
kv
------------------------------*/
#message .kv .ttl-box {
  padding-bottom: 0;
}
#message .kv .split-left-body .img-box {
  width: 50%;
  margin: auto auto 20px 32%;
}
#message .kv .split-right-body .text-box h3 {
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
/**************************************************
* 沿革 #history
***************************************************/
/*------------------------------
kv
------------------------------*/
#history .kv .split-right-body .img-box {
  margin-bottom: 40px;
}
#history .kv .split-right-body .text-box p {
  margin-bottom: 50px;
}
#history .kv dl div {
  border-bottom: solid 1px #F5F1F0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#history .kv dl div:first-child {
  border-top: solid 1px #F5F1F0;
  padding-top: 20px;
}
#history .kv dl div dt {
  width: 100%;
}
#history .kv dl div dd {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
#history .kv dl div span {
  line-height: 1.8;
}
#history .kv dl div dd .month {
  width: 50px;
  margin-right: 15px;
  text-align: right;
}
#history .kv dl div dd .txt {
  width: 85%;
}
#history .kv dl dd:last-child {
  margin-bottom: 0;
}
/**************************************************
* 私たちについて #aboutus
***************************************************/

/**************************************************
* スマホ私たちについて #aboutus
***************************************************/
/*------------------------------
kv
------------------------------*/
#aboutus .kv {
  flex-direction: column-reverse;
}
#aboutus .kv .split-right-body {
  margin: 0 auto 0;
  padding: 120px 20px 140px;
}
#aboutus .kv .split-right-body .ttl-box {
  padding: 0;
}
#aboutus .kv .ttl-box .subttl {
  text-align: center;
}




/*------------------------------
con01 
------------------------------*/
#aboutus .con01 {
  height: 100%;
}
#aboutus .con01 .split-right-body {
  background: url(../images/aboutus/con01_back.png) no-repeat;
  background-position: left 80% top 0;
  background-size: cover;
}
#aboutus .con01 .split-right-body .text-box.flex-box {
  justify-content: space-between;
}
#aboutus .con01 .split-right-body .text-box div {
  margin-bottom: 60px;
}
#aboutus .con01 .split-right-body .text-box div:last-child {
  margin-bottom: 30px;
}
#aboutus .con01 .split-right-body .ttl {
  -webkit-writing-mode: vertical-lr !important; /* 実装済 */
  -moz-writing-mode: vertical-lr; /* 実装済 */
  -ms-writing-mode: vertical-lr; /* 実装済 */
  writing-mode: vertical-lr;
  font-size: 43px;
  font-size: 4.3rem;
  font-weight: 600;
  line-height: 1.2;
  width: 15%;
}

#aboutus .con01 .split-right-body .text-box .mission {
  width: 82%;
}

#aboutus .con01 .split-right-body .text-box .subttl {
  margin-bottom: 30px;
}
#aboutus .con01 .split-right-body .text-box .catch-copy {
  font-size: 32px;
  font-size: 3.2rem;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.2;
}
#aboutus .con01 .split-right-body .text-box .text {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
#aboutus .con01 .split-right-body .text-box .text.first {
  margin-bottom: 50px;
}
#aboutus .con01 .split-right-body .text-box .text.txt-right {
  margin-bottom: 50px;
  text-align: right;
}
#aboutus .con01 .split-right-body .text-box .text .name {
  margin-right: 10px;
  font-size: 28px;
  font-size: 2.8rem;
}
#aboutus .con01 .split-right-body .text-box .text:last-child {
  margin-bottom: 0;
}


/*------------------------------
con01 
------------------------------*/

/*英語ページタイトル調整*/
#aboutus.aboutus-en .con01 .split-right-body .text-box .ttl{
font-size: clamp(3.3rem, 3.4vw, 4.5rem);
  line-height: 1;
  width: 20%;
}
#aboutus.aboutus-en .con01 .split-right-body .text-box .mission {
  width: 75%;
}
 

#aboutus.aboutus-en .con01 .split-right-body .text-box .catch-copy {
  font-size: 28px;
  font-size: 2.8rem;
}



#aboutus .con01 .split-right-body .text-box .subttl {
  margin-bottom: 30px;
}
#aboutus .con01 .split-right-body .text-box .catch-copy {
  font-size: 32px;
  font-size: 3.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}
#aboutus .con01 .split-right-body .text-box .text {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
#aboutus .con01 .split-right-body .text-box .text.first {
  margin-bottom: 50px;
}
#aboutus .con01 .split-right-body .text-box .text.txt-right {
  margin-bottom: 50px;
  text-align: right;
}
#aboutus .con01 .split-right-body .text-box .text .name {
  margin-right: 10px;
  font-size: 28px;
  font-size: 2.8rem;
}
#aboutus .con01 .split-right-body .text-box .text:last-child {
  margin-bottom: 0;
}


/*------------------------------
con02
------------------------------*/
#aboutus .con02 {
  height: 100%;
}
#aboutus .con02 .split-right-body .text-box div {
  margin-bottom: 60px;
}
#aboutus .con02 .split-right-body .text-box div:last-child {
  margin-bottom: 30px;
}
#aboutus .con02 .split-right-body .text-con {
  margin-bottom: 50px;
}
#aboutus .con02 .split-right-body .text-con .ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.2;
  margin: 20px auto 20px 0;
}

#aboutus .con02 .split-right-body .text-con .ttl span.sub {
  font-size: 12px;
  font-size: 1.2rem;
  margin-right: 15px;
}
#aboutus .con02 .split-right-body .text-con .img-box {
  margin-bottom: 20px;
}
#aboutus .con02 .split-right-body .text-con .text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
}


/*------------------------------
con03
------------------------------*/
#aboutus .con03 {
  height: 100%;
}
#aboutus .con03 .split-right-body .mamber-con {
  border-bottom: solid 1px #fff;
  margin: 30px auto 50px;
  max-width: 400px;
}
#aboutus .con03 .split-right-body .mamber-con.flex-box {
  flex-direction: column;
}
#aboutus .con03 .split-right-body .mamber-con .img-box {
  margin-bottom: 20px;
  margin-right: 7%;
}
#aboutus .con03 .split-right-body .mamber-con h4.ttl {
  font-size: 18px;
  font-size: 1.8rem;
}
#aboutus .con03 .split-right-body .mamber-con .role {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#aboutus .con03 .split-right-body .mamber-con .text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 50px;
  padding: 0;
}

/*------------------------------
con04    
------------------------------*/
.overviewTable dl {
            padding-top: 15px;
}
 .overviewTable dt{
            padding-bottom: 8px;
}

/*------------------------------
con05    
------------------------------*/
  #aboutus .con05 .split-right-body .gmap {
    margin-bottom: 10px;
  }

#aboutus .con05 .map .overviewTable dt ,
#aboutus .con05 .map .overviewTable dd {
    width: 100%;
    max-width: 100%;
  }



/*
#company .con02 .split-right-body .exterior.img-box {
  margin-bottom: 30px;
}
#company .con02 .split-right-body .overviewTable dd:last-child {
  padding-top: 20px;
  padding-bottom: 20px;
}
*/



/**************************************************
* 施工実績一覧　 #property
***************************************************/
#property .split-right-body .property-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 778px;
  margin: 0 auto;
}
#property .split-right-body .property-list-item {
  width: 45%;
  margin: 0 auto 30px;
  max-width: 350px;
}
#property .split-right-body .property-list-item img {
  height: 40vw;
  object-fit: cover;
  box-shadow: 6px 6px 4px 2px rgba(119, 101, 101, .3);
  margin-bottom: 5px;
}
#property .split-right-body .detail-box .date {
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}











/**************************************************
* パートナー募集 #partner
***************************************************/
/*------------------------------
kv
------------------------------*/
#partner .kv {
  flex-direction: column-reverse;
}
#partner .kv .split-left-body {
  position: relative;
  background: url(../images/partner/kv.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 50vh;
}
#partner .kv .split-right-body {
  margin: 0;
  padding: 120px 20px 140px;
}
#partner .kv .split-right-body .ttl-box {
  padding: 0;
}
/*------------------------------
con01 
------------------------------*/
#partner .con01 {
  height: 100%;
}

#partner .con01 .split-right-body .text-box div {
  margin-bottom: 60px;
}
#partner .con01 .split-right-body .text-box div:last-child {
  margin-bottom: 30px;
}
#partner .con01 .split-right-body .text-box .ttl {
  -webkit-writing-mode: vertical-rl; /* 実装済 */
  -moz-writing-mode: vertical-rl; /* 実装済 */
  -ms-writing-mode: vertical-rl; /* 実装済 */
  -writing-mode: vertical-rl;
  font-size: 43px;
  font-size: 4.3rem;
  font-weight: 600;
  line-height: 1.2;
}
#partner .con01 .split-right-body .text-box .subttl {
  margin-bottom: 30px;
}
#partner .con01 .split-right-body .text-box .catch-copy {
  font-size: 32px;
  font-size: 3.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}
#partner .con01 .split-right-body .text-box .text {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
#partner .con01 .split-right-body .text-box .text.first {
  margin-bottom: 50px;
}
#partner .con01 .split-right-body .text-box .text.txt-right {
  margin-bottom: 50px;
  text-align: right;
}
#partner .con01 .split-right-body .text-box .text .name {
  margin-right: 10px;
  font-size: 28px;
  font-size: 2.8rem;
}
#partner .con01 .split-right-body .text-box .text:last-child {
  margin-bottom: 0;
}
#partner .overviewTable dt {
  padding-top: 15px;
  border-bottom: solid 1px #E2E2E2;
}
#partner .overviewTable dd {
  padding-top: 15px;
}
#partner .overviewTable dt .dd-ttl, #partner .overviewTable dd .dd-ttl {
  display: block;
  width: 100%;
  line-height: 1.7;
}
#partner .form-wrap {
  margin-top: 60px;
}


/**************************************************
* 製品情報 #decor

***************************************************/
/*------------------------------
kv
------------------------------*/
#decor .kv .split-left-body {
  position: relative;
  background: url(../images/kv/kv-split-product-decor.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  width: 100%;
}
#decor .kv .split-left-body .ttl-box {
 position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#decor .kv .split-right-body .lead-s{
	 margin-bottom: 20px;
}
#decor .kv .split-right-body .lead {
  text-align: center;
  margin: 20px auto 0;
}

#decor .page .con01.split .ttl-box {
    padding: 120px 20px 70px;
}

#decor .con01 .split-left-body .img-box{
	display: none;
}



#decor .con01 .mission .text{
    margin-top: 20px;
	font-size: 14px;
    font-size: 1.4rem;
	line-height: 2;
	padding: 0;
}

/*
#decor .con01 .split-right-body{
  position: relative;
  background: url("../images/decor/decor-about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;	
}
*/


#decor .con01 .split-right-body {
  position: relative;
  background: url("../images/decor/decor-about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  overflow: hidden; /* 念のため */
}

#decor .con01 .split-right-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(64, 42, 42, 0.35); /* #402A2A の透過（60%は例） */
  mix-blend-mode: multiply; 
  pointer-events: none;
}
#decor .con01 .split-right-body .text-box{
	position: relative;
	z-index: 1;
}

.c-mark {
  font-size: 0.7em; 
  vertical-align: sub;
}

#decor .con01 .padding-wrap {
    padding: 20% 7% 21%;
}

#decor .con02 .lead{
	margin-bottom: 20px;
}

#decor .con02 .text{
	margin-top: 60px;
	 font-size: 14px;
    font-size: 1.4rem;
	max-width: 480px;
    line-height: 2;
	padding: 0;
}


#decor .con03 .split-left-body{
  position: relative;
  background: url(../images/decor/decor-kv-split-color-chart.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
}

#decor .con03 .padding-wrap{
    padding: 0;
}
#decor .con03 .padding-wrap .text-box{
    padding: 6% 4% 0%;
}
#decor .con03 .text-box{
	position:relative;
/*	margin-bottom: 10%;*/
	
}
#decor .con03 .lead,
#decor .con03 ul{
	margin-bottom: 24px;
	padding: 0;
}


#decor .con03 .color-smple-img{
	width: 45%;
    max-width: 250px;
    margin-left: auto;
    margin-top: -10%;
	margin-bottom: 20px;
}

#decor .con03 .decor-color-chart02-img img{
  width: 100%;
  height: 190px;
  object-fit: cover;
	object-position: top;
}

/*製品情報*/
#decor .con04 .split-right-body{
	 font-size: 14px;
    font-size: 1.4rem;
}

#decor .con04 .note,
#decor .con04 .note a{
	 font-size: 13px;
    font-size: 1.3rem;
}

#decor .con04 .note{
	margin-top: 30px;
}

#decor .con04 .border-box {
  background-color: rgba(95, 95, 95, 0.5);
  padding: 2em 1em;
  border: .6px solid #E2E2E2;
  margin-bottom: 2em;
}
#decor .con04 .border-box li{
	margin-top: 16px;
}

#decor .con04 .border-box .note {
  margin-top: 0;
}


/*------------------------------
英語ページ decor-en
------------------------------*/


#decor.decor-en .con02.split .ttl-box, 
#decor.decor-en .con03.split .ttl-box,
#decor.decor-en .con04.split .ttl-box{
    padding: 120px 20px;
}

#decor.decor-en .con02 .text:last-child{
	margin-top: 20px;
}

/**************************************************
* slick
***************************************************/
/*ドットナビ*/
#decor .slider {
  margin: 0 auto;
  max-width: 500px;
  width: 80%;
}
#decor .slider-img img {
  height: auto;
  width: 100%;
}
#decor .slide-dots {
  margin: 0;
  padding: 0;
/*  text-align: center;*/
}
#decor .slide-dots li {
  display: inline-block;
  margin: 0 4px;
}
#decor .slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
#decor .slide-dots li button::before {
  background-image: url("../images/common/slide-dots-off.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  height: 8px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 2px;
  width: 8px;
}
#decor .slide-dots li.slick-active button::before {
  background-image: url("../images/common/slide-dots-on.svg");
}
#decor .slide-dots button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}

/*矢印*/
#decor .slide-wrap{
	position: relative;
}
#decor .slide-arrow {
  margin: auto;
  position: absolute;
  top: 40px;
  bottom: 0;
  z-index: 10;
	 width: 40px;
	padding: 20px 0;
  cursor: pointer;
  transition: filter 0.3s;
}

#decor .slide-arrow:hover {
  filter: brightness(0.8); /* 20% 暗く */
}


#decor .prev-arrow {
    right: 40px;
    bottom: -100%;
	margin-right: 1em;

}
#decor .next-arrow {
    right: 0;
    bottom: -100%;
}
#decor .next-arrow button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}



/**************************************************
* 採用情報 #recruit
***************************************************/
/*------------------------------
kv
------------------------------*/
#recruit .kv .split-left-body {
  position: relative;
  background: url(../images/kv/kv-split-recruit.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
}
#recruit .kv .split-left-body .ttl-box {
/*  margin-left: 4%;*/
  padding-top: 30%;
}
#recruit .kv .split-right-body .lead {
  text-align: center;
  margin: 0 auto 70px;
}

/*------------------------------
con01 
------------------------------*/


#recruit.page .con01 .ttl-box {
/*    padding: 120px 20px 0px;*/
    padding: 0% 4% 10%;

}
#recruit .con01 .requirements-list{
    padding-bottom: 20px;
}
#recruit .con01 .requirements-list li {
  border-top: solid 0.6px #fff;
  transition: 0.3s ease-in-out;
}
#recruit .con01 .requirements-list li a {
  padding: 2.4rem 0;
  display: flex;
  flex-wrap: nowrap;
  width: unset;
  height: unset;
}
#recruit .con01 .requirements-list li:last-child {
  border-bottom: solid 0.6px #fff;
}
#recruit .con01 .requirements-list li:hover {
  opacity: 0.8;
  /*  background-color: #F3F3F3;*/
}
/*------------------------------
con02 
------------------------------*/
#recruit .con02 {
  background: #FFF;
}
#recruit .con02 .swiper-recruit.sp {
  display: block;
}
#recruit .con02 .split-right-body .swiper-recruit {
  background: #333333;
  text-align: center;
  margin-bottom: 20px;
}
#recruit .con02 .split-right-body .split-item .member-box {
  padding: 20px 30px;
}
#recruit .con02 .split-right-body .split-item .member-box p {
  color: #FFF;
}
#recruit .con02 .split-right-body .split-item .member-box .ttl {
  font-size: 13px;
  font-size: 1.3rem;
}
#recruit .con02 .split-right-body .split-item .member-box .name {
  font-size: 16px;
  font-size: 1.6rem;
}
#recruit .con02 .split-right-body .swiper-recruit {
  position: relative;
}
#recruit .con02 .split-right-body .swiper-wrapper {
  z-index: 0;
}
#recruit .con02 .split-right-body .swiper-wrapper .split-item {
  padding-bottom: 30px;
}
/* ページネーション */
#recruit .con02 .pagination-box {
  position: absolute;
  right: 10px;
  bottom: 15px;
  text-align: right;
  width: fit-content;
}
#recruit .con02 .swiper-button-next, .swiper-button-prev {
  position: relative;
  display: inline;
}
#recruit .con02 .swiper-button-prev {
  left: -13px;
}
#recruit .con02 .swiper-button-next::after, #recruit .con02 .swiper-button-prev::after, #recruit .con02 .swiper-pagination {
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFF;
}
#recruit .con02 .swiper-pagination {
  position: relative;
  display: inline;
  text-align: right;
  width: unset;
  bottom: 0px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-right: 20px;
}
/*------------------------------
採用情報、メンバー一覧、詳細共通 
メンバー名前と職業
------------------------------*/
.job {
  font-size: 12px;
  font-size: 1.2rem;
}
.name {
  font-size: 18px;
  font-size: 1.8rem;
}
/**************************************************
* 募集職種 #requirements
***************************************************/
#requirements .job {
  font-size: 22px;
  font-size: 2.2rem;
}
#requirements .con01 .job.text-c {
  text-align: center;
  margin: 1em auto 0;
}
#requirements .split-right-body .btn-box {
  margin-top: 70px;
  width: 100%;
}
#requirements .overviewTable {
  margin-bottom: 0;
}
/*------------------------------
con01
------------------------------*/
#requirements.page .con01 .job.text-c {
  padding: 0 4%;
}
/*------------------------------
con02
------------------------------*/
#requirements.page .con02 .split-left-body .ttl-box, #requirements.page .con02 .split-left-body .ttl-box .subttl {
  color: #FFF;
}

/**************************************************
* メンバー一覧・詳細 #member
***************************************************/
/*------------------------------
一覧
------------------------------*/
#member .member-list-box {
  width: calc(50% - 8px);
  margin-bottom: 20px;
  margin-right: 16px;
}
#member .member-list-box:nth-of-type(2n) {
  margin-right: 0;
}
#member .member-list-box a {
  display: block;
  text-align: center;
}
#member .member-list-box .img-box {
  margin-bottom: 10px;
}
/*------------------------------
詳細
------------------------------*/
/*interview*/
#member .interview {
  margin-top: 50px;
} /*暫定的に入力 全体調整後不要になるはず*/
#member .interview__list {
  margin-bottom: 50px;
}
#member .interview__list .question, #member .interview__list > h3, #member .interview__list .text-box {
  margin-bottom: 30px;
}
#member .interview__list > h3 {
  background: #F4F4F4; /*背景色*/
  padding: 0.5em;
  font-size: 22px;
  font-size: 2.2rem;
}
#member .interview__list .question {
  position: relative;
  /*	display: table-cell;*/
  padding-top: 10px;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
#member .interview__list .question::before {
  position: absolute;
  content: '';
  top: 0;
  width: 40px;
  left: 0;
  height: 6px;
  border-top: solid 2px #005627;
}
/*schedule、careerPath共通*/
#member .con02 .split-left-body {
  background: #333;
}
#member.page .con03 .split-left-body {
  background: #005627;
}
#member.page .con02.split .ttl-box .ttl, #member.page .con03.split .ttl-box .ttl, #requirements.page .con02.split .ttl-box, #member.page .con02.split .ttl-box .subttl, #member.page .con03.split .ttl-box .subttl, #requirements.page .con02.split .ttl-box .subttl {
  color: #fff;
}
/*schedule、careerPath共通*/
#member .schedule h3, #member .careerPath h3 {
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 900;
  font-size: 50px;
  font-size: 5rem;
}
#member .careerPath h3 {
  color: #06803D;
  position: relative;
  z-index: 2;
}
/* schedule */
#member .schedule_list div {
  padding-left: 27px;
  position: relative
}
#member .schedule_list .ttl {
  font-size: 12px;
}
#member .schedule_list div:not(:last-of-type) {
  padding-bottom: 20px
}
#member .schedule_list div::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: #005627;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
}
#member .schedule_list div:nth-child(1)::before {
  top: 1.6em
}
#member .schedule_list div dt {
  position: relative;
  font-weight: 600;
  margin-bottom: 12px;
}
#member .schedule_list div dt::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  top: 0;
  right: auto;
  bottom: 0;
  left: -30px;
  margin: auto;
  z-index: 1;
}
#member .schedule_list div dt span {
  color: #005627;
  margin-right: .5em;
  margin-bottom: 5px;
}
@media(min-width: 1024px) {
  #member .schedule_list {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  #member .schedule_list div {
    position: relative;
    width: 100%;
    padding-left: 27px;
    text-align: left;
  }
  #member .schedule_list div:not(:last-of-type) {
    padding-bottom: 40px;
  }
  #member .schedule_list div:nth-child(1)::before {
    top: 1.5em;
  }
}
#member .schedule_list dt::after {
  background: #005627;
}
/*careerPath キャリアパス*/
/*背景*/
#member .careerPath, #member .careerPath_list {
  position: relative;
  z-index: 2;
}
#member .careerPath .color-box {
  margin: 0 auto;
  width: 90%;
  height: 40%;
  background-color: #F0F5F2;
  position: absolute;
  right: -40px;
  top: 20px;
  z-index: 1;
}
#member .careerPath .color-box.bottom {
  right: unset;
  left: -30px;
  top: unset;
  bottom: 0;
  z-index: 1;
}
#member .careerPath_list div {
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, .2);
  margin-bottom: 30px;
  border-radius: 3px;
  width: 100%;
  max-width: 800px;
}
#member .careerPath_list div:last-child {
  margin-bottom: 0;
}
#member .careerPath_list div dt span {
  display: table;
  padding: .8em 1em;
  border-radius: 5px;
  color: #fff;
  background: #333;
  margin-right: 1em;
  margin-bottom: 12px;
}
#member .careerPath_list div dt {
  font-weight: 600;
  margin-bottom: 12px;
}
#member .con03 .split-right-body .btn-box {
  margin-top: 70px;
}
/*=================== member 320用 ==================*/
@media screen and (max-width: 320px) {
  #member .member-list-box .job {
    font-size: 10px;
    font-size: 1.0rem;
  }
  #member .member-list-box .name {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/**************************************************
* #requirements 募集職種
***************************************************/
#requirements .con01 .job.text-c {
  text-align: left;
}
#requirements .job-req__list > h3 {
  /*  background: #F4F4F4; */
  padding: 0.5em;
  border-left: solid 5px #cdbeb4; /*左線*/
}
#requirements .job-req__list > h3 {
  font-size: 20px;
  font-size: 2rem;
}
#requirements .job-req__list > h3, #requirements .job-req__list .text-box {
  margin-bottom: 12px;
}
#requirements .job-req__list:last-child .text-box {
  margin-bottom: 0;
}
#requirements .job-requirement {
  margin-bottom: 50px;
}
#requirements .con01 .job-description h3 {
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
#requirements .con01 .job-description h3 span {
  color: #cdbeb4;
  font-size: 2.8rem;
  font-weight: 600;
  margin-right: 12px;
  margin-bottom: 6px;
  display: block;
}
#requirements .con01 .job-des__list {
  margin-bottom: 50px;
}
#requirements .con01 .job-des__list dt {
/*  border-top: solid 1px #E2E2E2;*/
  padding-top: 1em;
  padding-bottom: 8px;
}
#requirements .con01 .job-des__list dd {
  border-bottom: solid 1px #E2E2E2;
/*  padding-top: .1em;*/
  padding-bottom: 1em;
}
#requirements .con02 .split-right-body {
  color: #F4F4F4;
}
#requirements .con03 {
  margin-top: 60px;
}
/**************************************************
* #property 物件募集
***************************************************/
/*------------------------------
kv
------------------------------*/
#property .text-box.split-text .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 70px;
}
#property .con01 .split-right-body .blog-content {
  margin-bottom: 30px;
}
#property .con01 .split-right-body .blog-content .blog-title {
  font-size: 22px;
  font-size: 2.2rem;
}
/*swipper*/
.swiper-slide {
  margin: 0 8px;
}
.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  position: relative;
  width: 70%;
  height: 4px;
  margin-top: 10px;
  background: #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin: 20px auto 30px;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #333 !important;
}
#property .con01 .swiper-button-next, #property .con01 .swiper-button-prev {
  color: rgba(255, 0, 0, 0);
}
/*フォーム*/
#property .form-wrap {
  padding-top: 30px;
}
#property .property-form {
  text-align: center;
  margin-bottom: 6%;
}
#property .property-form .fax {
  font-size: 20px;
  font-size: 2.0rem;
  margin-top: 2%;
}
#property #page.contact-form input, #property #page input[type=radio] {
  width: auto;
}
/**************************************************
* #article お知らせ一覧
***************************************************/
#article .con01 .split-left-body .img-box {
  display: block;
}
#article .con01 .firsthr {
  margin: 1rem auto 5rem;
  width: 15%;
  height: 1px;
  border: none;
  border-top: 1px #fff solid;
}
#article .con01 .secondhr {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1px #fff solid;
}
/**************************************************
* #article お知らせ詳細
***************************************************/
#article .split {
  height: 100%;
}
#article .kv .split-left-body {}
#article.article-page .split h2 {
  font-size: 30px;
  font-size: 3rem;
  font-size: clamp(1.125rem, 0.614rem + 2.56vw, 2.6rem);
  line-height: 1.6;
}
.blog-content .blog-time, .blog-thumbnail {
  margin-bottom: 10px;
}
.pagenav {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}
.pagenav a {
  transition: 0.5s;
}
.pagenav a:hover {
  color: #005627;
}
/*------------------------------
  .tablenav 一覧のページャー
------------------------------*/
/* 一覧ページャー */
.tablenav {
  margin: 20px 0;
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  text-align: right;
}
.tablenav a.page-numbers, .tablenav .current {
  padding: 5px 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 5px;
  font-weight: 600;
  line-height: 2.8;
}
.tablenav a.page-numbers:hover, .tablenav .prev.page-numbers:hover, .tablenav .next.page-numbers:hover {
  opacity: 0.7;
}
.tablenav .current {
  background-color: #5F5F5F;
  color: #fff;
}
.tablenav a.page-numbers.next, .tablenav a.page-numbers.prev {
  border: none;
  /*  background: #231815;*/
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
.tablenav .page-numbers li {
  display: inline;
}
/**************************************************
* お知らせ詳細
***************************************************/
.single .page .page-wrap-box {
  top: 35px;
}
.single .page h2.h2-ttl {
  text-align: left;
  left: 0;
  transform: unset;
  border-bottom: none;
  margin-bottom: 30px;
  padding: 0;
}
.single #exhibition.page h2.h2-ttl::after, .single #news.page h2.h2-ttl::after {
  content: '';
}
.single .page .date, .single .page .thumbnail {
  margin-bottom: 20px;
}
.single .page .wrap_blog {
  top: 25px;
}
.single .page .wrap_blog img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.single .page .wrap_blog, .single .page .wrap_blog pre, .single .page .wrap_blog a, .single .page .wrap_blog p {
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.8;
}
.single .page .wrap_blog span {
  word-break: break-all;
  overflow-wrap: break-word;
}
.single .page .wrap_blog .aligncenter {
  display: block;
  margin: 0 auto;
}
.single .page .wrap_blog .alignright {
  display: block;
  margin-left: auto;
}
.single .page .wrap_blog iframe {
  max-width: 100%;
}
.single .page .common-btn {
  text-align: center;
}
/* 次へ、前へ　サムネ画像 */
#article .pagenav {
  margin: 5rem auto;
  display: flex;
  font-size: 13px;
  font-size: 1.3rem;
  /* max-width: 740px; */
  justify-content: space-between;
}
#article .pagenav .pagenav-prev {
  text-align: left;
}
#article .pagenav .pagenav-next {
  text-align: right;
}
#article .pagenav .pagenav-prev, #article .pagenav .pagenav-next {
  margin-top: 1rem;
  line-height: 1;
  color: #959595;
}
#article .pagenav > div > a {
  background-color: #FFFFFF;
  padding: 1rem;
  margin: 0 auto 2rem auto;
  border-radius: 20px;
  border: 2px solid #F9F9F9;
  color: #959595;
  width: auto;
  max-width: 150px;
  display: block;
}
#article .pagenav > div > a:hover {
  border-radius: 20px;
  border: 2px solid #333;
  transition: all .3s;
  background-color: #FFFFFF;
  box-shadow: 0px -1px 8px #66666663;
  color: #333;
  display: block;
}
#article .pagenav .pagenav-prev .prev, #article .pagenav .pagenav-next .next {
  text-align: center;
}
#article .pagenav .pagenav-prev a#prev {
  margin-left: 0;
  margin-right: auto;
}
#article .pagenav .pagenav-next a#next {
  margin-left: auto;
  margin-right: 0;
}
#article .pagenav > div > a img {
  display: flex;
  border-radius: 10px;
  margin: auto;
}
/* 募集職種、メンバー詳細のエディタの初期化も記述 */
/*記事内見出し一覧*/
.single .page .wrap_blog h1, #requirements .job-requirement .text-box h1 {
  font-size: 26px;
  font-size: 2.6rem;
}
.single .page .wrap_blog h2, #requirements .job-requirement .text-box h2 {
  font-size: 24px;
  font-size: 2.4rem;
}
.single .page .wrap_blog h3, #requirements .job-requirement .text-box h3 {
  font-size: 22px;
  font-size: 2.2rem;
}
.single .page .wrap_blog h4, #requirements .job-requirement .text-box h4 {
  font-size: 20px;
  font-size: 2.0rem;
}
.single .page .wrap_blog h5, #requirements .job-requirement .text-box h5 {
  font-size: 18px;
  font-size: 1.8rem;
}
.single .page .wrap_blog h6, #requirements .job-requirement .text-box h6 {
  font-size: 16px;
  font-size: 1.6rem;
}
/*記事内見出し一覧*/
#requirements .job-requirement .text-box h1, #member .interview .text-box h1 {
  font-size: 32px;
  font-size: 3.2rem;
}
#requirements .job-requirement .text-box h2, #member .interview .text-box h2 {
  font-size: 30px;
  font-size: 3rem;
}
#requirements .job-requirement .text-box h3, #member .interview .text-box h3 {
  font-size: 28px;
  font-size: 2.8rem;
}
#requirements .job-requirement .text-box h4, #member .interview .text-box h4 {
  font-size: 26px;
  font-size: 2.6rem;
}
#requirements .job-requirement .text-box h5, #member .interview .text-box h5 {
  font-size: 24px;
  font-size: 2.4rem;
}
#requirements .job-requirement .text-box h6, #member .interview .text-box h6 {
  font-size: 22px;
  font-size: 2.2rem;
}
/* 記事内 ul ol */
.single .page .wrap_blog ul, .single .page .wrap_blog ol, #requirements .job-requirement .text-box ul, #requirements .job-requirement .text-box ol, #member .interview .text-box ul, #member .interview .text-box ol {
  padding-left: 30px;
}
.single .page .wrap_blog ul, #requirements .job-requirement .text-box ul, #member .interview .text-box ul {
  list-style: disc;
}
.single .page .wrap_blog ol, #requirements .job-requirement .text-box ol, #member .interview .text-box ol {
  list-style: decimal;
}
/* 記事内 a */
.single .page .wrap_blog p, .single .page .wrap_blog a, .single .page .wrap_blog li, .single .page .wrap_blog dt, .single .page .wrap_blog dd, #requirements .job-requirement .text-box p, #requirements .job-requirement .text-box a, #requirements .job-requirement .text-box li, #requirements .job-requirement .text-box dt, #requirements .job-requirement .text-box dd #member .interview .text-box p, #member .interview .text-box a, #member .interview .text-box li, #member .interview .text-box dt, #member .interview .text-box dd {
  font-size: unset;
}
.single .page .wrap_blog a, #requirements .job-requirement .text-box a, #member .interview .text-box a {
  text-decoration: underline;
}
/* 斜体、強調 */
.single .page .wrap_blog i, #requirements .job-requirement .text-box i, #member .interview .text-box i {
  font-style: italic;
}
.single .page .wrap_blog em, #requirements .job-requirement .text-box em, #member .interview .text-box em {
  font-style: oblique;
}
/* テーブル */
.single .page .wrap_blog table #requirements .job-requirement .text-box table, #member .interview .text-box table {
  display: inline;
}
/*記事内画像*/
.blog-content .wp-block-image img, #requirements .job-requirement .text-box img, #member .interview .text-box img {
  width: auto;
  margin-bottom: 30px;
}
/*記事内テキスト*/
.blog-content .blog-text p, #requirements .job-requirement .text-box p, #member .interview .text-box p {
  margin-bottom: 15px;
}
/**************************************************
* レポート一覧 #report
***************************************************/
#report .con01 .split-left-body .img-box {
  display: block;
}
#report .con01 .split-right-body .img-box {
  width: 100%;
  height: 100%;
  margin: 0 auto 10px;
  ;
}
#report .con01 .split-right-body .img-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
#report .con01 .split-right-body .detail-box {
  text-align: left;
  margin-bottom: 100px;
}
#report .con01 .split-right-body .detail-box .txt {
  font-size: 12px;
  font-size: 1.2rem;
}
/**************************************************
* お問い合わせフォーム、パートナー募集
***************************************************/

#contact .contact-form{
	margin-bottom: 40px	
}

 

/*----------------------------------
contact-form
----------------------------------*/
/*コンテンツ*/
#page .con01 .firsthr {
  margin: 1em auto 3em;
  width: 8%;
  height: 1px;
  border: none;
  border-top: 1px #fff solid;
}
#page .contact-form {
  width: 100%;
}
#page .contact-form .contact-form-table {
  padding: 15px 0;
}
#page .contact-form .th,
#page .entry-form th {
  position: relative;
}
/* 必須 */
#page th .essential {
  display: inline;
  color: #fff;
  position: absolute;
  top: -5px;
  left: -5px;
}
#page .wpcf7-form .wpcf7-spinner {
  width: 24px;
}
#page .wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 8px;
}
#page .contact-form p .form-label {
  padding-top: 10px;
  width: 30%;
  vertical-align: top;
  text-align: center;
}
#page .contact-form input {
  width: 100%;
  font-size: 18px;
  border: 1px solid #cdbeb4;
  border-radius: 4px;
  padding: 10px;
  background-color: #cdbeb4;
}
#page .contact-form input.wpcf7-form-control.wpcf7-file {
  border: none;
}
/* 承認確認 */
#page .wpcf7-form .consent .wpcf7-list-item {
  padding: 15px 0 30px;
  margin: 0;
}
#page .wpcf7-form .consent label {
  position: relative;
}
#page .wpcf7-form .consent label input[type=checkbox] {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 1px solid #cdbeb4;
  accent-color: #cdbeb4;
}
#page .contact-form p span.wpcf7-list-item-label {
  display: inline-block;
  padding-left: 25px;
  vertical-align: middle;
}
#page .template .contact-privacy {
  background-color: rgba(95, 95, 95, 0.5);
  padding: 0.5em 1em;
  border: .6px solid #fff;
  height: 160px;
  overflow-y: scroll;
  margin-bottom: 2em;
}
#page .template .contact-privacy p {
  font-size: 1.4rem;
}
/*----------------------------------
entry-form
----------------------------------*/
#page .entry-form {
  width: 100%;
}
#page .entry-form table {
  width: 100%;
}
#page .entry-form table th {
  padding: 0 0 12px;
  font-weight: 100;
  /* vertical-align: top; */
  text-align: left;
  width: 100%;
  /* font-size: 20px; */
  display: block;
position: relative;
}

#page .entry-form table td {
  padding-bottom: 40px;
  width: 100%;
  display: block;
}
#page .entry-form table .ad-double select {
  margin-left: 10%;
}
#page .entry-form table td .whole {
  width: 100%;
}
#page .entry-form table td .mini-whole {
  width: 50%;
}
#page .entry-form table td .quarter {
  width: 20%;
}
#page .entry-form .mini td .quarter {
  width: 17%;
}
#page .entry-form input {
  padding: 10px;
  width: 94%;
  font-size: 18px;
  border: 1px solid #cdbeb4;
  border-radius: 4px;
  background-color: #cdbeb4;
  margin-left: 10px;
}
#page .entry-form textarea {
  font-size: 20px;
  border: 1px solid #cdbeb4;
}
#page .entry-form select {
  height: 2.5em;
  font-size: 20px;
  font-weight: 100;
  border: 1px solid #cdbeb4;
  border-radius: 0;
  background: #cdbeb42;
}
#page .entry-form table .mini th {
  width: 15%;
}
#page .entry-form table .mini td {
  width: 85%;
}
#page .entry-form input[type=radio] {
  width: auto;
}

/*添付ファイル*/
#page .entry-form input.wpcf7-form-control.wpcf7-file {
  border: none;
  background: none;
/*    font-size: 16px;*/
margin-left: 0;
}

#page .entry-form input.wpcf7-form-control.wpcf7-file{
      font-size: 14px;  
}

#page .entry-form input.wpcf7-form-control.wpcf7-file::file-selector-button {
  font-weight: normal;
  color: #333;
  background: #cdbeb42;
  font-size: 14px;
  border: 0;
  border-radius: 4px;
  padding: 4px 20px;
  text-align: center;
}



/*生年月日*/
#page .birth .cont {
  width: calc(100% / 3);
  display: flex;
}
#page .birth .cont:first-child {
  width: 40%;
}
#page .birth .cont:nth-child(2), #page .birth .cont:last-child {
  width: 27.5%;
}
#page .birth .cont > span {
  display: block;
}

#page .birth .cont .quarter {
  width: 100%;
}
#page .birth .cont .unit {
  width: 30px;
  margin-left: 14px;
  align-self: flex-end;
}

#page .entry-form .align-center {
  margin-bottom: 12px;
  text-align: center;
}
/*お問い合わせ、エントリーフォーム共通*/
.wpcf7 {
  margin-top: 120px;
}
#page .ntry-form .align-center, #page .contact-form .align-center {
  text-align: center;
}
/*ボタン*/
#page textarea {
  width: 100%;
  font-size: 18px;
  border: 1px solid #cdbeb4;
  line-height: 1.7;
  border-radius: 6px;
  padding: 12px;
  background-color: #cdbeb4;
}
#page input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
}
#page input[type="submit"] {
  display: block;
  margin: 0 auto;
  padding: 19px 0;
  width: 30%;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  cursor: pointer;
  transition: .5s;
  border-radius: 30px;
}
#page input[type="submit"]:hover {
  /* padding: 15px 0; */
  padding: 19px 0;
  border: 1px solid #333;
  background-color: #FFF;
  color: #333;
  transition: .5s;
}


/* ラジオボタン装飾 */
#page .wpcf7-radio .wpcf7-list-item{
/*  position: relative;*/
/* margin: 0 0 0 36px;*/
  display: block;
  line-height: 2;
}
#page .wpcf7-radio .wpcf7-list-item input[type=radio]{

 accent-color: #333;
 /* 大きさ */
  inline-size: 1.5rem;
  block-size: 1.5rem;
    
}



/*　同意チェック */
#page .entry-form .wpcf7-list-item {
     margin: 0 ; 
}
#page .entry-form .check-box-agree input,
#page .entry-form .check-box-agree .wpcf7-list-item-label{
    display: inline-block;
}
#page .entry-form .check-box-agree input {
  width: 14px;
 vertical-align: bottom;
    margin-left: 0;
    padding: 8px;
}
#page .entry-form .check-box-agree > span {
  display: block;
  background-color: #cdbeb4;
  border-radius: 4px;
  padding: 8px 6px;
  width: 60%;
  max-width: 300px;
  margin: 0 auto 30px;
  text-align: center;
}
#page .entry-form .check-box-agree .wpcf7-list-item-label {
  margin-left: 6px;
  color: #333;
    font-weight: 500;
}


/*オートコンプリート機能による input背景色の調整*/
#page input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #cdbeb4 inset;
    -webkit-text-fill-color: #333 !important;   
}




/*----------------------------------
#privacy 個人情報保護方針
----------------------------------*/
#privacy.page .padding-wrap {
  padding: 6% 4% 12%;
}
#privacy h3 {
  margin-bottom: 20px;
}
#privacy h4 {
  margin-bottom: 10px;
}
#privacy h5 {
  margin-bottom: 4px;
}
#privacy h5, #privacy p, #privacy li {
  font-size: 15px;
  font-size: 1.5rem;
}
#privacy .privacy-box {
  margin-top: 30px;
}
#privacy .text-box, #privacy .privacy-list-wrap li {
  margin-bottom: 20px;
}
#privacy .privacy-list li {
  margin-bottom: 20px;
}
#privacy .privacy-list.s-margin li {
  margin-bottom: 10px;
}
#privacy .privacy-list.s-margin li:last-child {
  margin-bottom: 0;
}
#privacy .privacy-list.indent {
  padding: 0 10px;
}
#privacy .privacy-list.indent li {
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 8px;
}
#privacy .revision-date {
  margin-top: 20px;
  text-align: right;
}
#privacy .text-c {
  text-align: center;
}
#privacy table {
  margin: 20px auto;
  display: table;
  border-collapse: collapse;
  box-sizing: border-box;
  text-indent: initial;
  border-spacing: 0;
  border-color: #F1F1F1;
}
#privacy table th {
  width: 40%;
  border-right: 1px solid #F1F1F1;
  background-color: #F3F3F3;
  font-weight: normal;
}
#privacy table td {
  border-top: 1px solid #F1F1F1;
}
#privacy table tr:first-child {
  border-top: 1px solid #F1F1F1;
}
#privacy table tr {
  border-bottom: 1px solid #F1F1F1;
  border-left: 1px solid #F1F1F1;
  border-right: 1px solid #F1F1F1;
}
#privacy table td, #privacy table th {
  padding: 20px;
  text-align: left;
}
#privacy table ol li {
  font-size: 14px;
  margin-left: 1em;
  text-indent: -1em;
}



/*----------------------------------
#sitemap サイトマップ
----------------------------------*/
#sitemap .nav-box {
  text-align: center;
}
#sitemap .nav-box li {
  margin-bottom: 24px;
}
#sitemap .nav-box li.none {
  display: none;
}
#sitemap .nav-box a {
  font-size: 18px;
  font-size: 1.8rem;
  transition: 0.5s;
  position: relative;
}
#sitemap .nav-box li a span {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
}

#sitemap .nav-box a:hover{
	color: rgba(255, 255, 255, 0.7); /* 20% 暗く */
}





/*----------------------------------
#notfound 404
----------------------------------*/
#notfound .con01 .split-right-body {
  text-align: center;
}
#notfound .con01 .split-right-body p {
  margin-bottom: 30px;
}
/*----------------------------------
#loading ロードアニメーション
----------------------------------*/
/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  z-index: 9999;
}
#loading .loading-animation {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.loading-animation > .bounce {
  width: 18px;
  height: 18px;
  background-color: #cdbeb4;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loading-animation .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loading-animation .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
/* ローディングアニメーション */
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0)
  }
  40% {
    -webkit-transform: scale(1.0)
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/* ロード完了後にローディング画面を非表示 */
.loaded {
  opacity: 0;
  visibility: hidden;
  height: 0;
}