@charset "utf-8";
:root{
  /* Base Font Size 1.0rem = 10px */
  font-size: 10px;

  /* カラー指定 */
  --color-primary: #fff;
  --color-blk: #211816;
  --color-brn: #c49a6d;
  --color-darkBrn: #715c48;
  --color-lightGry: #cac8bc;
  --color-darkGry: #4c4a42;
  --color-red: #ea3323;

  --ff: "Noto Sans JP", sans-serif;
  --ff_serif: "Noto Serif JP", serif;
  --ff-en: "Inter", sans-serif;
}
/* 320対応（374以下は、ルートベースフォントサイズを9pxに） */
@media screen and (max-width: 374px){
    :root{
        font-size: 8px;
    }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}
body {
  position: relative;
  background: var(--color-blk);
  color: var(--color-primary);
  font-family: var(--ff);
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-x: hidden;
}
img{
  width: 100%;
  height: auto;
}
p{
  text-align: justify;
  font-size: 1.8rem;
}
a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover img{opacity: 0.9;}
ul,ol{
  padding-inline-start: 0;
  list-style-position: inside;
}

.wrapper,
.wrap800{
  max-width: 1040px;
  width: 92.1875%;
  margin-inline: auto;
}
.wrap800{max-width: 800px;}

.item_container,
.item_container_r{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.item_container_r{
  flex-direction: row-reverse;
}
.itembox03{width: 31%;}
.itembox04{width: 24%;}

.itembox03 img,
.itembox04 img{
  display: block;
  width: 100%;
  height: auto;
}

.sec{
  padding: 100px 0 50px;
}

.pc_case{display: block;}
.sp_case{display: none;}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .pc_case{display: none;}
  .sp_case{display: block;}
  .itembox03,
  .itembox04{
    width: 100%;
  }
  .sec{padding: 40px 0 30px;}
  p{font-size: 1.6rem;}
}
/* ==============================
    共通設定
=============================== */
.text_c{text-align: center;}
.text_r{text-align: right;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}

@media (max-width: 768px) {
}

/* ==============================
    header
=============================== */
header.wrapper{
  position: relative;
}
.pc_btnArea{
  position: fixed;
  top: 20px;
  right: 30px;
  width: 320px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
a.pc_btn_kengaku,
a.pc_btn_kengaku:visited,
a.pc_btn_shiryo,
a.pc_btn_shiryo:visited {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 65px;
  padding: 0 15px;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
}
.pc_btn_kengaku{
  background-image: linear-gradient(180deg, rgba(192, 0, 23, 1), rgba(83, 0, 10, 1));
}
.pc_btn_shiryo{
  background-image: linear-gradient(180deg, rgba(194, 153, 108, 1), rgba(84, 66, 47, 1));
}
.pc_btn_kengaku::before,
.pc_btn_shiryo::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  pointer-events: none;
}

.pc_btn_shiryo span {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 2px;
  line-height: 1.2;
}

footer{padding: 40px 0;}
.copy{
  color: var(--color-primary);
  text-align: center;
  font-size: 1.5rem;
  line-height: 3.0;
}

@media (max-width: 768px) {
  .pc_btnArea{
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 0;
    gap: 0;
  }
  a.pc_btn_kengaku,
  a.pc_btn_kengaku:visited,
  a.pc_btn_shiryo,
  a.pc_btn_shiryo:visited{
    font-size: 1.8rem;
  }
  .pc_btn_shiryo span {
    font-size: 1.2rem;
  }
  footer{padding: 20px 0 80px;}
}


/* ==============================
    fv （swiper）
=============================== */
/* ファーストビュー全体を占める */
.fv_slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}
/* Swiperスライドを画像フルカバーに */
.fv_slider .swiper {
  width: 100%;
  height: 100%;
}
.fv_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}
.fv_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト画像を中央に配置 */
.fv-overlay {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.fv-overlay .center-content {
  text-align: center;
  pointer-events: auto;
}

.fv-overlay h1 img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .fv-overlay h1 img {
    max-width: 97%;
  }
}



/* ==============================
    fv Area（動画）
=============================== */
/* .fv {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 50px;
}
.fv video,
.fv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.fv .pc_case,
.fv .tab_case,
.fv .sp_case {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.fv img.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

@media (min-width: 769px) and (max-width: 979px) {
  .fv {
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 768px) {
  .fv {
    aspect-ratio: 9 / 16;
    height: auto;
  }
  .fv .sp_case {
    width: 100%;
    height: auto;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
} */


/* ==============================
    title
=============================== */
.title_mainimg img{
  margin-bottom: 50px;
}
.title_maincenter{
  text-align: center;
  font-size: 6.0rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.sub_title_min{
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.box_grad{
  position: relative;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  background-size: 100% 50%;
  background-repeat: no-repeat;
  background-position: left top;
}

@media (max-width: 768px) {
  .title_maincenter{font-size: 3.4rem;}
}


/* ==============================
    ROOM GALLARY
=============================== */
#roomgallary .title_en,
#roomgallary .subtitle_en{
  text-align: right;
}
#roomgallary .title_shadow{
  position: absolute;
  left: 0;
  top: 15%;
}

.room_box{
  position: relative;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(196, 154, 109, 0.3), rgba(0, 0, 0, 0));
  background-size: 75% 50%;
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 50px;
  margin-bottom: 50px;
}
.room_itembox:first-child,
.room_madori:first-child{
  width: 55%;
}
.room_itembox:last-child{
  width: 43%;
  margin-bottom: 50px;
}
.room_madori:last-child{
  width: 37%;
}
.title_madori{
  text-align: center;
  font-family: var(--ff-en);
  font-size: 6.0rem;
  font-weight: 600;
  line-height: 1.5;
}
.title_madori span{
  display: block;
  font-size: 3.6rem;
  letter-spacing: 0.07em;
}
.madori_size{
  max-width: 300px;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 20px auto 30px;
}
.madori_size dt{
  width: 35%;
  text-align: right;
  font-family: var(--ff-en);
  font-size: 1.8rem;
}
.madori_size dd{
  width: 65%;
  text-align: right;
  font-family: var(--ff-en);
  font-size: 1.8rem;
}
.madori_size dd span{
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 5px;
}
.madori_size dt:first-of-type,
.madori_size dd:first-of-type{
  font-size: 2.4rem;
}
.font-big48{
  font-size: 4.8rem!important;
}
.madori_list{
  list-style: none;
}
.madori_list li{
  display: block;
  background: var(--color-brn);
  color: var(--color-blk);
  text-align: center;
  font-size: 2.0rem;
  padding: 5px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .room_itembox:first-child,
  .room_itembox:last-child,
  .room_madori:first-child,
  .room_madori:last-child{
    width: 100%;
  }
  .room_itembox:first-child{
    margin-bottom: 10px;
  }
  .room_itembox:last-child{
    margin-bottom: 30px;
  }
  #roomgallary .itembox04{
    margin-bottom: 10px;
  }

}


/* ==============================
    SECURITY
=============================== */
#security .itembox03 h3{
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 10px 0;
}
#security .itembox03{
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #security .item_container{
    width: 90%;
    margin: 0 auto;
  }
  #security .itembox03{
    margin-bottom: 30px;
  }
}


/* ==============================
    life
=============================== */
#life,
.contact_bg{
  position: relative;
  background: url(../images_new/life/life_bg.jpg) no-repeat center top / cover;
}

.tablife_line{
  position: relative;
}

/* タブ */
.tab_life {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tab_life > label {
  order: -1;
  width: 24.8%;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  cursor: pointer;
  padding: 1em .5em;
  margin-right: 0.25%;
  margin-bottom: -2px;
  -webkit-tap-highlight-color: transparent;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
/* チェックされたラベルだけ明るくする */
.tab_life > label:has(input:checked) {
  opacity: 1;
}

.tab_life > label.bg_life01 input:checked + * {
  background-color: var(--color-darkGry);
}
.tab_life > label.bg_life02 input:checked + * {
  background-color: #c49a6d;
}
.tab_life > label.bg_life03 input:checked + * {
  background-color: #b4ac92;
}
.tab_life > label.bg_life04 input:checked + * {
  background-color: #715c48;
}


.tab_life > label:last-of-type {
  margin-right: 0;
}
.tab_life > label:hover {
  opacity: .9;
}
.tab_life input {
  display: none;
}
.tab_life > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  /* background-color: #fff; */
}

.tab_life label:has(:checked) {
  position: relative;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  z-index: 1;
}

.tab_life label:has(:checked) + div {
  display: block;
}
.bg_life01{background: var(--color-darkGry);}
.bg_life02{background:#c49a6d}
.bg_life03{background:#b4ac92}
.bg_life04{background:#715c48}


/* タグの中身 */
#life .item_container,
#life .item_container_r{
  margin-bottom: 30px;
}
.lifebox:first-child{width: 45%;}
.lifebox:last-child{width: 53%;}
.lifebox_min:first-child{width: 24%;}
.lifebox_min:last-child{width: 74%;}
#life .life_gallery{width: 100%;}

.title_life{
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
#life .tab_life p{
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  #life{background: none;}

  .tab_life > label{
    width: 49%;
    font-size: 1.6rem;
    margin-right: 1%;
    margin-bottom: 0;
  }
  .lifebox:first-child,
  .lifebox:last-child,
  .lifebox_min:first-child,
  .lifebox_min:last-child{
    width: 100%;
  }
  #life .life_gallery{
    width: 90%;
    margin: 0 auto;
  }
  #life .life_gallery .itembox04{
    margin-bottom: 10px;
  }
  .title_life{
    font-size: 2.6rem;
    margin-bottom: 10px;
  }


}



/* ==============================
    flow
=============================== */
#flow dl{
  position: relative;
  width: 16.66%;
  text-align: center;
}
#flow dl dt {
  position: relative;
}
/* 丸の右に線をつなぐ */
#flow dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--color-darkGry);
  z-index: -1;
}
/* 最後のSTEPだけ線を消す */
#flow dl:last-child dt::after {
  display: none;
}
#flow dl dt span{
  background: var(--color-darkGry);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--ff-en);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto 10px;
}
#flow dl dt span b{
  font-size: 3.0rem;
  font-weight: 500;
}

#flow dl dd{
  text-align: center;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  #flow .item_container {
    display: block;
  }
  #flow dl {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
  #flow dl dt {
    position: relative;
    width: 80px;
    flex-shrink: 0;
    text-align: center;
  }

  #flow dl dt span {
    margin: 0;
  }

  /* 縦線をつなぐ */
  #flow dl dt::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: var(--color-darkGry);
    z-index: -1;
  }
  #flow dl:last-child dt::after {
    display: none;
  }

  #flow dl dd {
    margin-left: 15px;
    text-align: left;
  }

}

/* ==============================
    instagram
=============================== */
#instaArea{
  background: var(--color-lightGry);
}
#instaArea .insta_box{
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.insta_act img{
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.insta_act p{
  color: var(--color-blk);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}
#sb_instagram .sb_instagram_header .sbi_header_text, .sb_instagram_header .sbi_header_text{
  display: none;
}
@media (max-width: 768px) {
  #instaArea .insta_box{
    width: 100%;
  }
}



/* ==============================
    FAQ
=============================== */
.faq_item{
  margin-bottom: 50px;
}
.faq_item dt,
.faq_item dd {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.faq_item .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 300;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq_item dt .icon {
  background-color: var(--color-darkBrn);
}
.faq_item dd .icon {
  background-color: var(--color-brn);
}
.faq_item dt p,
.faq_item dd p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .faq_item dt,
  .faq_item dd{
    align-items: flex-start;
  }
  .faq_item .icon{
    width: 50px;
    height: 50px;
    font-size: 2.4rem;
  }
  .faq_item dt p,
  .faq_item dd p{
    font-size: 1.6rem;
  }
}

/* ==============================
    お問い合わせ
=============================== */
#contact{
  background: var(--color-lightGry);
  padding: 100px 0;
}
#contact .title_mainimg{
  display: block;
  width: 80%;
  margin: 0 auto;
}
a.btn_contact,
a.btn_contact:visited{
  width: 45%;
  background: var(--color-blk);
  color: var(--color-primary);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
a.btn_contact:hover{
  opacity: 0.8;
}
.contact_txt{
  text-align: center;
  color: var(--color-blk);
  font-size: 2.4rem;
  margin: 40px auto 10px;
}
a.btn_request,
a.btn_request:visited{
  display: block;
  width: 100%;
  background: var(--color-blk);
  color: var(--color-primary);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 20px 0;
}
a.btn_contact span,
.btn_request span{
  display: block;
  font-size: 1.4rem;
}
a.btn_contact span{
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  #contact{
    padding: 60px 0 30px;
  }
  #contact .title_mainimg{
    width: 100%;
  }
  a.btn_contact,
  a.btn_contact:visited,
  a.btn_request,
  a.btn_request:visited{
    width: 100%;
    font-size: 2.2rem;
  }
  a.btn_contact:first-child{
    margin-bottom: 20px;
  }
  .contact_txt{
    font-size: 2.2rem;
  }
}

/* ==============================
    お問い合わせ FORM
=============================== */
header#head_page{
  width: 100%;
  height: auto;
  padding: 20px 0;
}
.header_logo{
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto;
}
.title_conatct{
  text-align: center;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 50px auto 30px;
}
.subtitle_contact{
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.formArea{
  max-width: 780px;
  width: 92.1875%;
  margin-inline: auto;
}

/* form */
/* .contact_form {
  width: 100%;
  border: 1px solid #b2b2b2;
  border-collapse: collapse;
  font-family: sans-serif;
} */

.form_group {
  display: flex;
  border-top: 1px solid #b2b2b2;
  color: var(--color-blk);
}
.form_group:first-child {
  border-top: none;
}
.form_label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30%;
  border-right: 1px solid #b2b2b2;
  background: #cac8bc;
  color: var(--color-blk);
  font-weight: 400;
  padding: 30px;
}
.form_field {
  width: 70%;
  background: #fff;
  padding: 30px;
}

/* 必須 */
.required,
.optional {
  background: #fff;
  color: #ea3323;
  font-size: 1.2rem;
  padding: 2px 10px;
}
.optional{
  color: #1e1e1e;
}
.form_field input,
.form_field textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #b2b2b2;
  border-radius: 2px;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 8px;
}
/* .form_field input:last-child,
.form_field textarea:last-child {
  margin-bottom: 0;
} */
.form_row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.form_row:last-child {
  margin-bottom: 0;
}
.dash{
  color: var(--color-darkBrn);
  font-size: 1.6rem;
}
.submit_btn {
  position: relative;
  display: block;
  width: 300px;
  height: 60px;
  background: linear-gradient(180deg, rgba(192, 0, 23, 1), rgba(83, 0, 10, 1))!important;
  color: #fff!important;
  border: none!important;
  font-size: 1.8rem;
  line-height: 60px!important;
  cursor: pointer;
  padding: 0!important;
  margin: 30px auto!important;
  transition: background 0.5s ease;
}

.submit_btn::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  width: 290px;
  height: 50px;
}
.submit_btn:hover {
  background: #64000b;
}

#thanks{
  padding: 60px 0 100px;
}
#thanks.contact_bg::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 0;
}
#thanks .title_conatct,
#thanks .formArea{
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .form_group {
    flex-direction: column;
  }
  .form_group,
  .form_label,
  .form_field{
    width: 100%;
  }
  .form_label,
  .form_field{
    padding: 10px 15px;
  }

  #thanks{
    padding:40px 0;
  }

  #thanks .title_conatct{
    font-size: 2.8rem;
    margin: 0 auto 30px;
  }
  #thanks .formArea p.text_c{
    text-align: left;
  }

}
