@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Amatic+SC:wght@400;700&family=Damion&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sen:wght@400..800&display=swap");
@import url("https://fonts.cdnfonts.com/css/cantata-one");
@import url("https://fonts.cdnfonts.com/css/abhaya-libre-2");
@import url("https://fonts.cdnfonts.com/css/borel");
@import url("https://fonts.cdnfonts.com/css/bona-nova");



/* mv_area */
.mv {
  width: 100%;
  text-align: right;
  position: fixed;
  
}

.smv{
   width: 100%;
  text-align: right;
  position: fixed;
  min-height: 100vh;
  height: 100svh;
}



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

.en1 {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-style: italic;
}

.en2 {
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-style: normal;
}

.en3 {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
}

.ja2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.main_title {
  position: absolute;
  top: 18%;
  left: 10%;
  z-index: 5;
}





.fv-text1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
  top: 25%;
  left: 10%;
  line-height: 1.25;
  color: #232323;
}

.fv-text2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto;
  text-align: center;
  color: #232323;
  letter-spacing: 3px;
  margin-top: -63px;
}

.fw-bold {
  font-weight: 600;
}

.fb-300 {
  font-weight: 200;
}

.text-container01 {
  position: absolute;
  z-index: 5;
  left: 10%;
  top: 10%;
}

.text1 {
  font-size: 36px;
  line-height: 1.2;
  text-align: left;
  letter-spacing: 1px;
  font-weight: 600;
}

/* .sub-text {
  font-size: 22px;
  display: block;
  margin-left: 156px;
  color: #CDC191;
} */

.text2 {
  margin-top: 24px;
  font-size: 1.3vw;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 1px;
  width: 600px;
}

.caption {
  font-size: 32px;
  transform: rotate(-4.89deg);
  margin-top: 15px;
}

.js_mv_sld {
  text-align: right;
  position: fixed;
  top: 0;
  z-index: 1;
}



.center-image {
  text-align: right;
}

.arrange-txt1 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-top: 40px;
}


.ar-txt01 {
  width: 100%; /* 親要素の幅を親いっぱいに広げる */
}



.arrange-txt2 {
  font-size: 18px;
  line-height: 2;
  margin-top: 10px;
  width: 600px; /* 画面の幅の80%に設定 */
  margin: 0 auto; /* 上下は余白0、左右は自動計算で中央寄せ */
  text-align: center; /* テキスト自体も中央にしたい場合は追加 */
}

.sub-txt {
  text-align: center;
  font-size: 22px;
  color: #CDC191;
}

.mv img {
  width: 100%;
}


.arrange_back1 {
  background-color: #F8F6F2;
}

.arrange-text1 {
  color: #BAAB67;
}


/* スクロールダウンの位置 */
.scroll {
  margin-top: 250px;
}
.scroll_title {
  margin-top: 250px;
}

.scroll span {
  display: block;
  text-align: left;
  width: 34px;
  color: #232323;
  margin: 0 auto;
}

.scroll_title span{
    display: block;
  text-align: left;
  width: 34px;
  color: #232323;
  margin: 0 auto;
}

/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: 20px;
  content: "";
  height: 35px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}

.scroll_title::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: 20px;
  content: "";
  height: 35px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}

/* 線の背景色 */
.scroll::after {
  background-color: #ccc;
  bottom: 20px;
  content: "";
  height: 35px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
.scroll_title::after {
  background-color: #ccc;
  bottom: 20px;
  content: "";
  height: 35px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}

/* モデルA */

.model01 {
  margin-top: 60%;
  width: 100%;
  z-index: 1000;
  position: relative;
  background-color: #Fff;
  padding-top: 15%;
  /* padding-bottom: 300px; */
}

.modeltop {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  position: relative;
}

.model01 .hair {
  position: relative;
  z-index: 1000;
}

.model01 .hair01 {
  text-align: right;
  max-width: 800px;
  /* margin-left: auto; */
  /* position: relative; */
  z-index: 1000;
}
.number01 {
  font-size: 96px;
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #CFC495;
}

.model01 .hair02 {
  text-align: right;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1000;
}

.sub-text-a {
  font-size: 14px;
  display: block;
  margin-left: 156px;
  color: #CDC191;
}

.sub-text-a {
  font-size: 22px;
  display: block;
  margin-left: 156px;
  color: #CDC191;
}

/* .ar-txt01{
  justify-content: center;
  width: 600px;
} */

.df {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  column-gap: 5%;
  margin-top: 80px;
  justify-content: space-between;
}

.model01 .hair03 {
  position: relative;
  z-index: 1000;
}

.model01 .hair04 {
  margin-top: 80px;
  position: relative;
  z-index: 1000;
}

.model01 .hair05 {
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1000;
}

/* モデルB */
.model02 {
  padding-top: 200px;
  width: 100%;
  z-index: 2;
  position: relative;
  background-color: #Fff;
}


.model02 .hair01 {
  text-align: left;
  max-width: 60%;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.number02 {
  font-size: 96px;
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #D6C9C4;
}

.number2 {
  position: absolute;
  z-index: 1;
  right: -53px;
  top: -64px;
}

.sub-text-b {
  font-size: 14px;
  display: block;
  margin-left: 156px;
  color: #9F7C6E;
}

.sub-text-b {
  font-size: 22px;
  display: block;
  margin-left: 156px;
  color: #9F7C6E;
}

.text-container02 {
  position: absolute;
  padding-top: 200px;
  top: 6%;
  right: 3%;
  z-index: 5;
}

.text-container04 {
  position: absolute;
  top: 6%;
  right: 16%;
  width: 43%;
  z-index: 5;
}

.arrange-text2 {
  color: #764430;
}

.sub-txt2 {
  text-align: center;
  font-size: 22px;
  color: #764430;
}

.arrange_back2 {
  background-color: #FBF6F1;
}

.model02 .hair02 {
  text-align: right;
  max-width: 800px;
  margin-left: auto;
  margin-top: 80px;
  position: relative;
  z-index: 1000;
}

.model02 .hair03 {
  text-align: right;
  max-width: 600px;
  margin-left: auto;
  margin-right: 80px;
  margin-top: 80px;
  position: relative;
  z-index: 1000;
}

.model02 .hair04 {
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1000;
}

/* モデルC */
.model03 {
  padding-top: 200px;
  z-index: 1100;
  position: relative;
  background-color: #fff;
}

.model03 .hair {
  position: relative;
}

.model03 .hair01 {
  text-align: right;
  max-width: 60%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.number03 {
  font-size: 96px;
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #CCA3A3;
}

.sub-text-c {
  font-size: 14px;
  display: block;
  margin-left: 156px;
  color: #B16C6D;
}

.sub-text-c {
  font-size: 22px;
  display: block;
  margin-left: 156px;
  color: #B16C6D;
}

.arrange-text3 {
  color: #902D2E;
}

.sub-txt3 {
  text-align: center;
  font-size: 22px;
  color: #902D2E;
}

.arrange_back3 {
  background-color: #FBF1E5;
}

.model03 .hair02 {
  text-align: right;
  max-width: 800px;
  margin-right: 80px;
  margin-left: auto;
  margin-top: 100px;
  position: relative;
  z-index: 1000;
}

.model03 .df {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  column-gap: 10%;
  margin-top: 80px;
  justify-content: center;
}

.model03 .hair03 {
  margin-top: 80px;
  position: relative;
  z-index: 1000;
}

.model03 .hair04 {
  position: relative;
  z-index: 1000;
}

.model03 .hair05 {
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1000;
}

/* モデルD */
.model04 {
  padding-top: 200px;
  padding-bottom: 100px;
  background-color: #Fff;
  position: relative;
}

.model04 .hair {
  position: relative;
}

.model04 .hair01 {
  text-align: left;
  max-width: 60%;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.number4 {
  position: absolute;
  z-index: 1;
  right: -53px;
  top: -64px;
}


/* .text-container04 {
  position: absolute;
  padding-top: 300px;
  top: 25%;
  right: -60%;
  z-index: 2;
} */

.number04 {
  font-size: 96px;
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E5C9AF;
}

.sub-text-d {
  font-size: 14px;
  display: block;
  margin-left: 156px;
  color: #DBAC81;
}

.sub-text-d {
  font-size: 22px;
  display: block;
  margin-left: 156px;
  color: #DBAC81;
}

.arrange-text4 {
  color: #CB894B;
}

.sub-txt4 {
  text-align: center;
  font-size: 22px;
  color: #CB894B;
}

.arrange_back4 {
  background-color: #F6E8E2;
}

.model04 .hair02 {
  text-align: right;
  max-width: 800px;
  margin-right: 80px;
  margin-left: auto;
  margin-top: 100px;
  position: relative;
  z-index: 1000;
}

.model04 .df {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  column-gap: 6%;
  margin-top: 80px;
  justify-content: center;
  align-items: center;
}

.model04 .hair03 {
  position: relative;
  z-index: 1000;
}

.model04 .hair04 {
  position: relative;
  z-index: 1000;
}

.model04 .hair05 {
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1000;
}

/* アレンジ */
.arrange {
  background-color: #fff;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 250px;
}

.arrtitle {
  justify-content: left;
}

.arrange_in {
  width: 100%;
  padding-top: 32px;
  margin-top: 32px;
}

.js_md_sld li {
  max-width: 100%;
}

.js_md_sld li img {
  width: 494px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.arr_delayScroll {
  width: 100%;
}

.arr_delayScroll img {
  width: 100%;
}

.slick-slide {
  width: 40%;
}

/* スライド読み込み時の崩れ防止 */
ul.js_mv_sld>li:not(:first-child) {
  display: none;
}

ul.js_md_sld>li:not(:first-child) {
  display: none;
}

/* dotsを丸くカスタマイズするCSS */
.js_md_sld {
  position: relative;
}

/* ----------保留　アレンジヘアエリア------------ */
.arrange-text {
  font-size: 200px;
  text-align: center;
  letter-spacing: 1px;
  position: absolute;
  white-space: nowrap;
  top: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.arrante-text-container {
  display: block;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 65px;
  z-index: 1;
}
.arrange ul {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: -84px;
    z-index: 2;
}
.arrtitle {
  width: 20%;
  position: absolute;
  top: -10%;
}

.in01 {
  width: 30%;
  margin: 0 50px 0 30px;
}

.in02 {
  margin-right: 30px;
}

h3 {
  text-align: center;
  color: #848484;
  font-family: "Cantata One", sans-serif;
  margin-bottom: 30px;
}




/* バックナンバー */
.bk_number-container {
  /* margin-top: 100px; */
  width: 100%;
  height: 278px;
  background-position: center;
  background-size: cover;
  z-index: 2000;
  position: absolute;
  background-image: url("/img/back_backnumber_.jpg");
  
}

.square{
  width: 100%;
  
}

.bk_number-container a {
  display: block;
  padding-top: 94px;
}

.bk_number {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  height: 80px;
  background-color: #D8A579;
  text-align: center;
  position: relative;
   /* ドロップシャドウの設定 */
   box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.3); /* 右下方向に5px、ぼかし半径15px、色は半透明の黒 */
}

.dli-chevron-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) translateY(-50%) rotate(45deg);
  position: absolute;
  right: 25%;
  top: 50%;
  transition: all 0.3s ease-in-out;
}

.btn {
  text-align: center;
  width: 100%;
  line-height: 80px;
  margin: 0 auto;
  font-size: 28px;
  color: #fff;
  
}

/* モデル1 */
/* .number {
  font-size: 96px;
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #CFC495;
} */

.number1 {
  position: absolute;
  z-index: 1;
  left: -53px;
  top: -64px;
}

.img {
  position: relative;
  z-index: 2;
}

.model01 .hair01 {
  text-align: right;
  max-width: 60%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
  color: #fff !important;
}

.bk_number:hover {
  outline-offset: -1px;
  background-color: #ffffff;
  transition: all 0.4s;
}

.btn:hover {
  color: #D8A579;
}

.bk_number:hover .dli-chevron-right {
  right: 23%;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
  -ms-filter: "alpha(opacity=100)" !important;
}

/* アニメーション */
.fade-in-right {
  animation-delay: 1.5s;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateX(70px);
  transition: 1s ease;
}

.fade-in-left {
  animation-delay: 4.5s;
  animation-duration: 3.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateX(-70px);
  transition: 1s ease;
}

.hair01 .fade-in-left .img{
  width: 80%;
}

.fadeUp {
  animation-delay: 2.5s;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

/* ----------レスポンシブ---------- */

/* mv画像切り替え・スマホ */
.img-sp {
  display: none;
  margin-left: auto;
}



.js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
}


@media screen and (max-width: 768px) {

  .main_title {
    position: relative;
    top: initial;
    left: initial;
    margin-top: 46px;
  }



  

  .mv{
  position: static;
}

.smv{
  position: fixed;
}

  .main_title .border {
    width: 35px;
    height: 1px;
    background-color: #232323;
    transform: rotate(90deg);
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 293px; */
  }

  .fv-text1 {
    text-align: center;
    line-height: 1.8;
    font-size: 24px;
    margin-bottom: 20px;
    color: #232323;
  }

  .fv-text2 {
    font-size: 14px;
    line-height: 1.8;
    color: #232323;
    letter-spacing: 3px;
    text-align: left;
    margin-top: 30px;
     /* ←これを追加！ */
     /* -webkit-writing-mode: vertical-rl; */
     writing-mode: vertical-rl !important;
    text-orientation: upright !important;
    white-space: nowrap;
  }

  .text-container {
    margin-top: 24px;
    max-width: initial;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .text1 {
    font-size: 18px;
    line-height: 1;
    text-align: center;
  }

  .text2 {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .img-sp {
    display: block;
  }

  .number01{
    font-size: 48px;
  }
  
  .number02{
    font-size: 48px;
  }
  
  .number03{
    font-size: 48px;
  }
  
  .number04{
    font-size: 48px;
  }
  

  .center-image {
    text-align: right;
    display: none;
  }

  .arrange {
    background-color: #fff;
    max-width: initial;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
.arrange ul {
  width: 100%;
  margin: 0 auto;
  top: 63px;
}

.arrante-text-container {
  display: block;
  text-align: center;
  /* padding-top: 100px; */
  padding-top: 40%;
  /* padding-bottom: 35px; */
  z-index: 1;
}
  .arrange_in {
    width: 100%;
    padding-top: 16px;
    margin-top: 50px;
  }

  .arrange-text {
    font-size: 58px;
    text-align: center;
    letter-spacing: 1px;
    position: initial;
    white-space: nowrap;
    transform: initial;
    margin-top: 74px;
  }

  .js_md_sld li img {
    max-width: 65%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .arrange-txt1 {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 0px;
    padding-bottom: 10px;
  }

  .arrange-txt2 {
    font-size: 13px;
    line-height: 2;
    margin-top: 10px;
    width: 90%;
    margin: 0 auto;
  }

  .sub-txt {
    text-align: center;
    font-size: 14px;
    color: #CDC191;
  }

  .arrange_back {
    height: 320px;
  }

  .caption {
    font-size: 18px;
    transform: rotate(-4.89deg);
    margin-top: 15px;
  }

  /* モデルA */
  
  .model01 {
    margin-top: 700px;
    padding-top: 115px;
    /* padding-bottom: 115px; */
  }
.model01 .hair{

  padding-top: 150px;
}



  .number {
    font-size: 48px;
    color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #CFC495;
  }

  .model01 .hair01 {
    text-align: left;
    max-width: initial;
    width: 100%;
    margin-left: 0;
    position: relative;
    z-index: 1000;
  }

  .text-container01 {
    position: initial;
    margin-top: 30px;
  }

  /* .sub-text {
    font-size: 14px;
    display: block;
    margin-left: 156px;
    color: #CDC191;
  } */

  .number1 {
    position: absolute;
    z-index: 1;
    left: 38px;
    top: -36px;
  }

  .model01 .hair02 {
    text-align: right;
    max-width: initial;
    margin-top: 40px;
    width: 90%;
    position: relative;
    z-index: 1000;
  }

  .model01 .hair03 {
    width: 70%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .df {
    max-width: initial;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    column-gap: 8%;
    margin-top: 40px;
    justify-content: space-between;
  }

  .model01 .hair05 {
    margin-top: 40px;
    max-width: initial;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1000;
  }
  .scroll {
    
    margin-top: 100px;
  }


  .scroll_title {
    position: relative; /* ← これを追加！ */
    margin-top: 100px;
  }

  .scroll01::before {
    background-color: #CFC495;
    top: 75px;
    bottom: initial;
  }

  .scroll01::after {
    top: 75px;
    bottom: initial;
    background-color: rgba(207, 196, 149, 0.3);
  }

  /* モデルB */
  .model02 {
    margin-top: 80px;
    width: 100%;
    z-index: 1000;
    padding-top: 80px;
  }

  .sub-text2 {
    color: #9F7C6E;
    margin-left: 58px;
  }

  .number2 {
    position: absolute;
    z-index: 1;
    right: 34px;
    top: -36px;
  }

  .model02{
    margin-top: 0px;
  }

  .model02 .hair01 {
    width: 100%;
    text-align: right;
    max-width: initial;
    margin-right: 0;
    margin-left: auto;
    /* margin-top: 115px; */
    position: relative;
    z-index: 1000;
  }

  .text-container02 {
    position: initial;
    margin-top: 30px;
    padding-top: 0px;
  }
  .text-container04 {
    position: initial;
    margin-top: 30px;
    padding-top: 0px;
    right: 3%;
    width: 100%;
  }

  .model02 .hair02 {
    text-align: auto;
    width: 70%;
    max-width: initial;
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
    position: relative;
    z-index: 1000;
  }

  .model02 .hair03 {
    text-align: right;
    max-width: initial;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 90%;
    position: relative;
    z-index: 1000;
  }

  .model02 .hair04 {
    margin-top: 40px;
    width: 95%;
    max-width: initial;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1000;
  }

  .scroll02::before {
    background-color: #764430;
    top: 75px;
    bottom: initial;
  }

  .scroll02::after {
    top: 75px;
    bottom: initial;
    background-color: rgb(118 68 48 / 30%);
  }

  /* モデルC */
  .model03 {
    /* margin-top: 115px; */
    z-index: 1000;
    padding-top: 80px;
  }

  .model03 .hair01 {
    text-align: left;
    max-width: initial;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    position: relative;
    z-index: 1000;
  }

  .model03 .hair02 {
    text-align: right;
    max-width: initial;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
    position: relative;
    z-index: 1000;
  }

  .model03 .df {
    max-width: initial;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    column-gap: 5%;
    margin-top: 40px;
    justify-content: center;
  }

  .model03 .hair03 {
    margin-top: 50px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .model03 .hair05 {
    margin-top: 40px;
    max-width: initial;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1000;
  }

  .sub-text3 {
    color: #B16C6D;
    margin-left: 80px;
  }

  .scroll03::before {
    background-color: #902D2E;
    top: 75px;
    bottom: initial;
  }

  .scroll03::after {
    top: 75px;
    bottom: initial;
    background-color: rgb(144 45 46 / 30%);
  }

  /* モデルD */
  .model04 {
    /* margin-top: 115px; */
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .model04 .hair01 {
    text-align: center;
    max-width: initial;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    position: relative;
    z-index: 1000;
  }

  .number4 {
    position: absolute;
    z-index: 1;
    right: 34px;
    top: -36px;
  }

  .sub-text4 {
    margin-left: 100px;
    color: #DBAC81;
  }

  .model04 .hair02 {
    text-align: right;
    max-width: initial;
    margin-right: auto;
    margin-left: auto;
    width: 70%;
    margin-top: 40px;
    position: relative;
    z-index: 1000;
  }

  .model04 .hair03 {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
  }

  .model04 .df {
    max-width: initial;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    column-gap: 6%;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
  }

  .model04 .hair05 {
    margin-top: 40px;
    max-width: initial;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1000;
  }

  .bk_number {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 32px;
    height: 32px;

    text-align: center;
    margin-top: 80px;
    margin-bottom: 24px;
    position: relative;
  }

  .scroll04::before {
    background-color: #CB894B;
    top: 75px;
    bottom: initial;
  }

  .scroll04::after {
    top: 75px;
    bottom: initial;
    background-color: rgb(203 137 75 / 30%);
  }

  .dli-chevron-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 5px;
    height: 5px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) translateY(-50%) rotate(45deg);
    position: absolute;
    right: 24%;
    top: 50%;
    transition: all 0.3s ease-in-out;
  }

  .btn {
    text-align: center;
    line-height: 30px;
    margin: 0 auto;
    font-size: 12px;
    color: #fff !important;
  }

  .bk_number:hover .dli-chevron-right {
    right: 23%;
    transition: all 0.3s ease-in-out;
  }

  .bk_number-container {
   
    width: 100%;
    height: 100px;
    background-position: center;
    background-size: cover;
    background-image: url(/img/back_backnumber_.jpg);
  }

  .bk_number-container a {
    padding-top: 26px;
  }

  .bk_number {
    margin-top: 7px;
    margin-bottom: 0;
  }
}



/* -----------改行----------- */

/*PCで無効*/
.brsp {
  display: none;
}

/*スマートフォンで有効*/
@media screen and (max-width: 768px) {
  .brsp {
    display: block;
  }
}

/*スマホで無効*/
.brpc {
  display: none;
}

.brinline {
  display: none;
}

/*PCで有効*/
@media screen and (min-width: 769px) {
  .brpc {
    display: block;

  }

  .brinline {
    display: inline;
  }
}


