/* -----------------------------------
   top
 ----------------------------------- */
.top {
  position: relative;
  width: 100%;
  height: 100vh;
}

.Hero-inner {
  padding: 0 3.5%;
  padding-top: 10%;
  position: relative;
}

#slider {
  width: 100%;
  height: 80vh;
}

.Hero-inner #slider {
  width: 80%;
  height: 80vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 120px;
  filter: opacity(0.6);
}

.Hero-inner .txt {
  position: absolute;
  top: 185px;
  right: 8.5%;
  font-feature-settings: 'palt'0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  text-orientation: upright;
  z-index: 1;
}

.Hero-inner .txt i {
  color: #2B0101;
  margin-bottom: 5px;
}

.Hero-inner h2 {
  margin: -1px 10px 0px 48px;
  font-size: 3.8rem;
  letter-spacing: 0.25em;
  line-height: 1.6;
}

.Hero-inner .img {
  position: absolute;
  top: 240px;
  right: 0;
  left: 35%;
  /* width: 100%; */
  height: auto;
  z-index: 99;
}

.Hero-inner .img img {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.Hero-inner p {
  position: absolute;
  top: 600px;
  right: 0;
  left: 2%;
  font-size: 5.0rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 3px 3px 5px #aaa;
  text-align: center;
  z-index: 99;
}

.Hero-inner p span {
  letter-spacing: 0.25em;
  line-height: 2.0;
}

.Hero-inner p:last-child {
  margin-right: 28px;
  font-size: 2.0rem;
  letter-spacing: 0.25em;
}

@media screen and (max-width: 767px) {
  .top {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  .Hero-inner {
    padding-top: 30%;
  }

  .Hero-inner .img {
    position: static;
    top: 80px;
    right: 0px;
    width: 100%;
    height: 100vh;
    min-width: 100%;
    filter: opacity(1);
    text-align: center;
  }

  .Hero-inner .img img {
    width: 280px;
    height: auto;
    object-fit: cover;
    object-position: 100% 100%;
  }

  .Hero-inner .txt {
    position: static;
    width: 100%;
    margin-top: 30px;
  }

  .Hero-inner h2 {
    margin: -1px 5px 0px 20px;
    font-size: 3.0rem;
  }

  .Hero-inner p {
    margin: -1px 5px 0px 10px;
    z-index: 1;
  }

  .Hero-inner #slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 80%;
    margin-top: 80px;
    filter: opacity(0.6);
    z-index: -1;
  }

  .Hero-inner p:last-child {
    margin-right: 20px;
    font-size: 2.0rem;
    letter-spacing: 0.25em;
  }

  .Hero-inner p {
    position: absolute;
    top: 500px;
    right: 0;
    left: 3%;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    z-index: 80;
    line-height: 1.2em;
  }
}




/* -----------------------------------
   sec_message（トップメッセージ）
  ----------------------------------- */
.sec_message {
  position: relative;
}

.sec_message .sec_ineer .sec_flex {
  gap: 0px;
}

/* sec_img */
.sec_message .sec_img {
  width: 50%;
}

.sec_message .sec_img .img {
  display: flex;
  gap: 80px;
  width: 100%;
  object-fit: cover;
  margin-left: -15%;
}

.sec_message .sec_img .img img {
  width: 280px;
  height: 750px;
  object-fit: cover;
  margin-top: -50px;
  object-position: 10% 100%;
}

.sec_message .sec_img .img .sec_img02 {
  width: 45%;
  height: 350px;
  object-fit: cover;
  padding-top: 0px;
  object-position: 60% 100%;
  transform: translateY(30px);
}

/* sec_txt */
.sec_message .sec_txt {
  width: 50%;
}

.sec_message .sec_txt p {
  line-height: 2.0;
  margin-bottom: 18px;
}

.sec_btn {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

/* ボタンのデザイン */
.sec_btn .button {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  border: 2px solid #f9cfd6;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  letter-spacing: .03em;
  text-align: center;
  position: relative;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
  box-shadow: 0 4px 0 0 #f9cfd6;
  padding: 28px 50px;
  line-height: 1.6;
}

.sec_btn .button:hover {
  box-shadow: none;
  transform: translate3d(0, 8px, 0)
}

@media screen and (max-width: 767px) {
  .sec_btn .button {
    width: 85%;
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .sec_message .sec_flex {
    display: flex;
    /* flex-direction: column-reverse;縦並び逆順 */
    flex-direction: column;
  }

  .sec_message .sec_img {
    width: 100%;
  }

  .sec_message .sec_img .img {
    display: flex;
    gap: 30px;
    width: 100%;
    object-fit: cover;
    margin-left: 0;
  }

  .sec_message .sec_img .img img {
    width: 45%;
    height: 350px;
    object-fit: cover;
    margin-top: 0px;
    object-position: 10% 100%;
    transform: translateY(-10px);
  }

  .sec_message .sec_img .img .sec_img02 {
    width: 45%;
    height: 350px;
    object-fit: cover;
    padding-top: 0px;
    object-position: 60% 100%;
    transform: translateY(30px);
  }

  .sec_message .sec_txt {
    width: 100%;
  }

  .sec_message .sec_btn {
    display: block;
  }

  .sec_btn .button {
    margin-top: 30px;
  }

  .sec_message .sec_img h2 {
    font-size: 1.8rem;
    text-align: left;
  }

  .sec_message .sec_img .img {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }

  /* .sec_message .sec_img .img img {
    width: 50%;
    height: auto;
    object-fit: cover;
  } */
}

/* -----------------------------------
   sec_column（3つの特徴）
 ----------------------------------- */
.sec_txt_img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.sec_txt_txt a {
  text-align: right;
  color: red;
  font-weight: 700;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .sec_column .sec_txt {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 50px;
  }

  .sec_txt_img {
    width: 100%;
    object-fit: cover;
  }

  .sec_txt_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
  }

  .sec_txt_txt {
    width: 130%;
  }

  .sec_txt_txt h3 {
    line-height: 1.8;
    padding-right: 10px;
    margin-bottom: 15px;
    text-align: right;
  }

  .sec_txt_txt p {
    background-color: #fff;
    padding: 10px;
    margin: 0 0 0 -50px;
    font-size: 12px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }
}

.sec_grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  /* 縦 */
  margin-top: 80px;
}

.g-item {
  border: solid 0.5px #291F23;
  padding: 5% 5% 10%;
  font-size: 1.4rem;
}

.g-item h3 {
  display: block;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  font-weight: normal;
}

.g-item h3::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  border-bottom: solid 1px #291F23;
  width: 40%;
  height: 1px;
}

.g-item .button {
  font-size: 1.4rem;
  padding: 10px 5px;
  border-width: 0.5px;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .sec_grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    /* 縦 */
    margin-top: 80px;
  }

  .g-item h3 {
    font-size: 1.4rem;
  }

  .g-item p {
    font-size: 1.2rem;
  }

  .g-item .button {
    font-size: 8px;
    padding: 10px 5px;
    border-width: 0.5px;
    box-shadow: none;
  }
}

/* -----------------------------------
sec_navi（ページナビ）
 ----------------------------------- */
.PromiseSection {
  position: relative;
  width: 100%;
  height: 100%;
}

.PromiseSection-ImgBox {
  width: 80%;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  gap: 80px;
}

.PromiseSection-ImgBox .img {
  /* width: 50%; */
}

.PromiseSection-ImgBox .txt {
  /* width: 50%; */
}

.PromiseSection-ImgBox .txt {
  font-feature-settings: 'palt'0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  text-orientation: upright;
  z-index: 1;
}

.PromiseSection-ImgBox .img p {
  display: none;
}

.PromiseSection-ImgBox strong {
  font-size: 2.5rem;
}

.PromiseSection-ImgBox h2 {
  margin: -1px 10px 0px 48px;
  font-size: 3.8rem;
  letter-spacing: 0.25em;
  line-height: 1.6;
}

.PromiseSection-ImgBox-Child h2 {
  font-size: 3.8rem;
}

.PromiseSection-ImgBox p {
  margin: -1px 10px 0px 18px;
  font-size: 1.75rem;
  letter-spacing: 0.25em;
  line-height: 1.6;
}

.PromiseSection-ImgBox p span {
  letter-spacing: 0.25em;
  line-height: 2.0;
}

.PromiseSection-ImgBox img {
  /* width: 50%;
  height: auto;
  object-fit: cover; */
}

.PromiseSection-ImgBox-Child {
  width: 80%;
  margin: 0 auto;
  margin-top: 80px;
  z-index: 1;
  display: flex;
  gap: 80px;
}

.PromiseSection-ImgBox-Child .img {
  width: 50%;
}

.PromiseSection-ImgBox-Child .txt {
  width: 50%;
}

.Promise-Inner {
  margin-left: auto;
  width: 49vw;
  display: flex;
  flex-direction: column;
  background: #f9ebe8;
}

.Promise-Inner-Headline {
  letter-spacing: 0.06em;
  color: #cfbe9a;
  font-size: 7.3vw;
  z-index: 2;
}

.Promise-Inner-SubHeadline {
  margin-top: 2.6vw;
  font-weight: bold;
  font-size: 2vw;
}

.Promise-Inner-Btn {
  margin-top: 2.6vw;
  width: 200px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-weight: bold;
  font-size: 14px;
}


.FacilitiesSection {
  position: relative;
  padding-top: 15vw;
  padding-bottom: 0px;
  margin-bottom: 80px;
}

.FacilitiesSection-ImgBox {
  position: absolute;
  top: 0;
  right: 0;
  width: 88.4vw;
  z-index: 1;
  text-align: right;
}

.FacilitiesSection-ImgBox img {
  width: 80%;
  height: 500px;
  margin: 0;
  object-fit: cover;

}

.FacilitiesSection-ImgBox-Child {
  position: absolute;
  bottom: 1.5vw;
  right: 6.4vw;
  width: 37.5vw;
}

.Facilities-Inner {
  padding-top: 15.8vw;
  padding-left: 8.4vw;
  padding-bottom: 4.6vw;
  width: 49vw;
  display: flex;
  flex-direction: column;
  background: #f9ebe8;
}

.Facilities-Inner-Headline {
  letter-spacing: 0.06em;
  color: #cfbe9a;
  font-size: 7.3vw;
  z-index: 2;
}

.Facilities-Inner-SubHeadline {
  margin-top: 2.6vw;
  font-weight: bold;
  font-size: 2vw;
}

.Facilities-Inner-Text {
  margin-top: 2.6vw;
  max-width: 324px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-size: 16px;
}

.Facilities-Inner-Btn {
  margin-top: 2.6vw;
  width: 200px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-weight: bold;
  font-size: 14px;
}

.PromiseSection-ImgBox-Child .sec_btn {
  width: 80%;
  margin: 50px auto 0;
}

@media screen and (max-width: 820px) {
  .PromiseSection-ImgBox {
    top: 80px;
    width: 100%;
    text-align: center;
  }

  .PromiseSection-ImgBox img {
    width: 95%;
    height: 200px;
    object-fit: cover;
  }

  .PromiseSection-ImgBox-Child {
    display: none;
  }

  .Promise-Inner {
    padding-top: 50vw;
    padding-bottom: 14vw;
    padding-left: 0vw;
    width: 91vw;
  }

  .Promise-Inner a {
    text-align: center;
  }

  .Promise-Inner-Headline {
    margin-left: 0vw;
    font-size: 14vw;
  }

  .Promise-Inner-SubHeadline {
    margin-top: 20px;
    margin-left: 0vw;
    padding-left: 2.5vh;
    font-size: 5.7vw;
  }

  .Promise-Inner-Text {
    margin-top: 20px;
    margin-right: -5vw;
    padding-left: 2.5vh;
    max-width: 91vw;
    font-size: 14px;
  }

  .FacilitiesSection {
    padding-top: 20vw;
  }

  .FacilitiesSection-ImgBox {
    top: 100px;
    width: 100%;
    text-align: center;
  }

  .FacilitiesSection-ImgBox img {
    width: 95%;
    height: auto;
    object-fit: cover;
  }

  .FacilitiesSection-ImgBox-Child {
    display: none;
  }

  .Facilities-Inner {
    padding-top: 50vw;
    padding-left: 0vw;
    padding-bottom: 14vw;
    width: 91vw;
    text-align: center;
  }

  .Facilities-Inner-Headline {
    font-size: 14vw;
  }

  .Facilities-Inner-SubHeadline {
    margin-top: 20px;
    padding-left: 2.5vh;
    font-size: 5.7vw;
  }

  .Facilities-Inner-Text {
    margin-top: 20px;
    margin-right: -5vw;
    padding: 0 2.5vh;
    max-width: 91vw;
    font-size: 14px;
  }

  .PromiseSection-ImgBox {
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .PromiseSection-ImgBox .img {
    width: 100%;
  }

  .PromiseSection-ImgBox .txt {
    width: 30%;
  }

  .PromiseSection-ImgBox .txt {
    font-feature-settings: 'palt'0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    text-orientation: upright;
    z-index: 1;
  }

  .PromiseSection-ImgBox h2 {
    margin: -1px 10px 0px 10px;
    font-size: 2.0rem;
    letter-spacing: 0.25em;
    line-height: 1.6;
    text-align: start;
  }

  .PromiseSection-ImgBox p {
    margin: 0;
    margin-top: 15px;
    font-size: 1.4rem;
  }

  .PromiseSection-ImgBox strong {
    font-size: 1.8rem;
  }

  .PromiseSection-ImgBox .txt p {
    display: none;
  }

  .PromiseSection-ImgBox .img p {
    display: block;
  }

  .PromiseSection-ImgBox p span {
    letter-spacing: 0.25em;
    line-height: 2.0;
  }

  .PromiseSection-ImgBox img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .PromiseSection-ImgBox-Child {
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    display: block;
    align-items: flex-end;
    gap: 10px;
  }

  .PromiseSection-ImgBox-Child h2 {
    font-size: 2.0rem;
    text-align: start;
  }

  .PromiseSection-ImgBox-Child p {
    margin: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  .PromiseSection-ImgBox-Child .img {
    width: 70%;
    margin: 0 0 0 auto;
  }

  .PromiseSection-ImgBox-Child .txt {
    width: 100%;
  }

  .PromiseSection-ImgBox-Child .sec_btn {
    width: 100%;
    margin: 20px auto 50px;
  }

  .PromiseSection-ImgBox-Child .sec_btn .button {
    font-size: 1.4rem;
  }
}


/* -----------------------------------
   sec_slide(お客様の声)
 ----------------------------------- */
.sec_slide .sec_ineer {
  width: 90%;
  margin: 0 auto;
  /* background-color: #DCE0DF; */
  z-index: -2;
}

.sec_slide .sec_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 450px;
}

.sec_slide .sec_img,
.sec_txt {
  position: relative;
  z-index: 1;
  padding: 0;
}

.sec_slide .sec_img {
  width: 70%;
}

.sec_slide .sec_txt {
  width: 30%;
}

/* 
 sec_img(column)
 slider03 
 */

.sec_slide .column {
  width: 90%;
  margin: 0 30px;
  border: 1px solid #696969;
  padding: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.column_con,
.column_img {
  width: 100%;
}

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  top: 45%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  height: 15px;
  width: 15px;
}

.slick-prev {
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  right: 15.5%;
  transform: rotate(45deg);
}

/* hovItem  */
.column_img {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.column_img img {
  border-radius: 0px;
}

.column_img .btn-more {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background-color: #e6e6e6;
  z-index: 99;
  margin: 0;
  font-size: 1.5rem;
}

.column_img .btn-more::before {
  display: none;
}

.column_img .btn-more::after {
  display: none;
}

.column_img::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0%;
  height: 100%;
  background-color: #DCE0DF;
  -webkit-transition: .5s;
  transition: .5s;
}

.column_img:hover::before {
  width: 100%;
}

.column_img .caption {
  color: #fff;
  padding: 5% 10%;
}

.column_img .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  text-align: center;
}

.column_img:hover .mask {
  opacity: 1;
  z-index: 2;
}

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

  .sec_slide .sec_flex {
    display: block;
    height: auto;
  }

  .sec_slide .sec_img {
    width: 100%;
    padding: 0%;
  }

  .sec_slide .sec_txt {
    width: 100%;
    padding: 5%;
    text-align: center;
  }

  .sec_slide .column {
    width: 85%;
    margin: 0 20px;
    border: 1px solid #696969;
    padding: 5%;
    display: block;
  }

  .column_img {
    margin-top: 30px;
  }

  .slider03 .slick-list {
    padding: 0 0% 0 0 !important;
  }

  .slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
  }

  .slick-next {
    right: 1.5%;
    transform: rotate(45deg);
  }
}

.ameblo_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.ameblo_box img {
  width: 250px;
  height: 150px;
  object-fit: cover;
}

.ameblo_box a {
  font-size: 1.4rem;
  color: brown;
}

@media screen and (max-width: 767px) {
  .ameblo_box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    text-align: left;
  }

  .ameblo_box img {
    width: 150px;
    height: 100px;
    object-fit: cover;
  }

  .ameblo_box a {
    font-size: 1.2rem;
    color: brown;
  }
}

.insta_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.insta_wrap li {
  max-width: 40rem;
}