@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/* PC
----------------------------------*/
/* SP
----------------------------------*/
/* nav-toggle */
#nav-toggle {
  display: block;
  width: 160px;
  cursor: pointer;
  padding: 24px 12px;
  background: #E95F72;
  z-index: 3000;
  border-left: 1px solid #fff;
  text-align: center;
  color: #fff;
}
#nav-toggle > div {
  position: relative;
  width: 50px;
  margin: auto;
}
#nav-toggle > div > p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  font-size: 1.1em;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 0px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 20px;
}

.open #nav-toggle span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 5px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

#sp-nav {
  background: #faf8f5;
  color: #3d3d3d;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: scroll;
  padding: 50px 20px 20px;
}
#sp-nav .call-btn {
  margin: 0 auto 20px;
  max-width: 700px;
}
#sp-nav a:hover {
  opacity: 0.7;
}
#sp-nav a img {
  border-radius: 10px;
}
#sp-nav .dropdown {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 8px;
}
#sp-nav .dropdown .dropdown-li {
  width: 32%;
  margin-bottom: 5px;
  transition: none;
}
#sp-nav .dropdown .dropdown-li.type1 {
  width: 66%;
}
#sp-nav .dropdown .dropdown-li a {
  font-size: 12px;
  letter-spacing: 0;
  padding: 3px 0;
  background: #faf8f5;
  display: blcok;
  color: #3d3d3d;
  height: 100%;
  line-height: 1.5;
}
#sp-nav ul {
  list-style: none;
  display: flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}
#sp-nav ul li {
  width: calc((100% - 20px) / 2);
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#sp-nav ul li.accent a {
  background: #fff;
  color: #E95F72;
  border-radius: 5px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
#sp-nav ul li.accent a b {
  font-size: 1.1rem;
  font-family: "Noto Sans JP", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#sp-nav ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#sp-nav ul li:nth-child(3) {
  transition-delay: 0.2s;
}
#sp-nav ul li:nth-child(4) {
  transition-delay: 0.3s;
}
#sp-nav ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#sp-nav ul li:nth-child(6) {
  transition-delay: 0.5s;
}
#sp-nav ul li:nth-child(7) {
  transition-delay: 0.6s;
}
#sp-nav ul li:nth-child(8) {
  transition-delay: 0.7s;
}
#sp-nav #sp-logo {
  margin-bottom: 20px;
}
#sp-nav #sp-logo img {
  width: 180px;
  animation: r4 30s steps(60) infinite;
}

/* open */
.open {
  overflow: hidden;
}
.open #sp-nav {
  visibility: visible;
  opacity: 1;
}
.open #sp-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

#sp_btn {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: #E95F72;
  border-top: 1px solid #faf8f5;
}
#sp_btn ul {
  display: flex;
  justify-content: center;
  max-width: 100%;
  padding-bottom: 15px;
  margin: 0 auto;
  padding: 0px 60px 0px 0px;
}
#sp_btn ul li {
  width: 51.333%;
  border-right: 1px solid #faf8f5;
}
#sp_btn ul li:first-child {
  border-left: 1px solid #faf8f5;
}
#sp_btn ul li a {
  display: block;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
}
#sp_btn ul li a span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
}

@media all and (max-width: 1100px) {
  .container {
    padding: 120px 15px;
  }
  .container--phalf {
    padding: 60px 15px;
  }
  #header.is-fixed .header__inner .header__logo img {
    width: 160px;
  }
  #header .header__inner .header__logo img {
    width: 180px;
  }
  .nav__list .nav__item {
    width: 120px;
  }
  .nav__list .nav__item .nav__link {
    font-size: 1.4rem;
  }
  #nav-toggle {
    width: 120px;
  }
  .menu-btn .inner {
    padding: 15px 20px;
    gap: 20px;
  }
  .menu-btn .inner .menu-text {
    width: calc(100% - 160px);
  }
  .menu-btn .inner .menu-text .btn a {
    font-size: 0.9em;
  }
}
@media all and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
  .bnr li {
    width: 100%;
    float: none;
  }
  /* header */
  #header.is-fixed .header__inner .header__logo img {
    width: 100px;
  }
  #header .header__inner {
    flex-direction: column;
    gap: 10px;
  }
  #header .header__inner .header__logo img {
    width: 120px;
  }
  .nav__list .nav__item {
    width: 100px;
  }
  .nav__list .nav__item .nav__link {
    font-size: 1.1rem;
  }
  #nav-toggle {
    width: 100px;
  }
  #nav-toggle > div > p {
    font-size: 1.1rem;
  }
  /* footer_navi */
  .footer_navi {
    display: none;
  }
  .footer-txt {
    font-size: 0.8em;
  }
  /* container */
  .container {
    padding: 60px 15px;
  }
  .container--phalf {
    padding: 30px 15px;
  }
  .form-group {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .form-group .form-label {
    border-radius: 10px;
  }
  .menu-btn .inner {
    flex-direction: column;
  }
  .menu-btn .inner .menu-img {
    width: 100%;
    text-align: center;
  }
  .menu-btn .inner .menu-img img {
    width: 80%;
  }
  .menu-btn .inner .menu-text {
    width: 100%;
  }
  /* title */
  .title .en {
    font-size: 2rem;
  }
  .title .ja {
    font-size: 1.5em;
  }
  .plus {
    margin: 20px auto;
  }
  .plus img {
    max-width: 30px;
  }
  .l-column {
    row-gap: 10px;
  }
  .l-column.col2 > li,
  .l-column.col2 .col-item {
    width: 100%;
  }
  .l-column.col3 li,
  .l-column.col3 .col-item {
    width: 100%;
  }
  .l-column.col3.sp-triangle {
    row-gap: 0;
  }
  .l-column.col3.sp-triangle li .inner,
  .l-column.col3.sp-triangle .col-item .inner {
    max-width: 170px;
    margin: auto;
    font-size: 0.8em;
  }
  .l-column.col3.sp-triangle li:nth-child(1),
  .l-column.col3.sp-triangle .col-item:nth-child(1) {
    width: 100%;
  }
  .l-column.col3.sp-triangle li:nth-child(2), .l-column.col3.sp-triangle li:nth-child(3),
  .l-column.col3.sp-triangle .col-item:nth-child(2),
  .l-column.col3.sp-triangle .col-item:nth-child(3) {
    width: 49%;
  }
  .l-column.col4 li,
  .l-column.col4 .col-item {
    width: 48%;
  }
  .l-column.col5 li,
  .l-column.col5 .col-item {
    width: 48%;
  }
  .l-column li.w100,
  .l-column .col-item.w100 {
    width: 100%;
  }
  .l-column li.w70, .l-column li.w30, .l-column li.w60, .l-column li.w40,
  .l-column .col-item.w70,
  .l-column .col-item.w30,
  .l-column .col-item.w60,
  .l-column .col-item.w40 {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  html {
    font-size: 3.125vw;
  }
  body {
    font-size: 1.2rem;
  }
  .fixed-btn .lead {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
  .fixed-btn img {
    max-width: 25px;
  }
  .fixed-btn .inner a {
    font-size: 1em;
    min-width: auto;
    padding: 5px 16px;
  }
  .sp-head-contact {
    display: flex;
    align-items: center;
    font-size: 0.7em;
    gap: 10px;
    text-align: center;
    line-height: 1.4;
  }
  .sp-head-contact .sp-tel a {
    background: #E95F72;
    color: #fff;
    display: block;
    padding: 3px 8px;
    border-radius: 5px;
  }
  .sp-head-contact .sp-tel a:hover {
    opacity: 0.6;
  }
  .sp-head-contact .sp-text {
    color: #E95F72;
  }
  .tbl td {
    padding: 10px;
  }
  .tbl_scroll {
    padding-bottom: 10px;
    overflow: auto;
    white-space: nowrap;
  }
  .tbl_scroll::-webkit-scrollbar {
    height: 5px;
  }
  .tbl_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .tbl_scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .tbl_scroll::-webkit-scrollbar-piece {
    background: #eee;
  }
  .tbl_scroll::-webkit-scrollbar-piece:start {
    background: #eee;
  }
  .pcbr {
    display: none;
  }
  /* visual */
  .visual .inner .ballon_parent {
    width: 100%;
  }
  .visual .inner .ballon_parent li img {
    width: 45%;
  }
  #header.is-fixed .header__inner {
    padding: 5px 0;
  }
  #header .header__inner {
    flex-direction: row;
    padding: 5px 0;
  }
  .nav {
    display: none;
  }
  #nav-toggle {
    width: 52px;
    height: 52px;
    padding: 8px;
  }
  #nav-toggle > div {
    width: 30px;
  }
  #nav-toggle > div span {
    height: 1px;
  }
  #nav-toggle > div > p {
    font-size: 8px;
  }
  .open #nav-toggle span {
    top: 10px !important;
  }
  #sp-nav .call-btn {
    max-width: 100%;
    min-width: 100%;
    margin-top: 20px;
  }
  #sp-nav ul {
    gap: 10px;
  }
  #sp-nav ul li {
    width: 100%;
  }
  .lcontainer {
    margin-bottom: 20px;
  }
  /* snip */
  .snip_parent {
    padding: 40px 0;
  }
  .snip_parent .snip figcaption > div.two h3 {
    font-size: 1.6rem;
  }
  .snip_parent .snip figcaption > div.two h3 span {
    font-size: 1.2rem;
  }
  /* ggmap */
  .ggmap iframe {
    height: 160px;
  }
  /* pickup */
  .pickup .detail_box {
    padding: 10px;
  }
  .pickup .detail_box .bnr_tel {
    width: 95%;
    box-sizing: border-box;
  }
  /* page-title */
  .page-title .lead {
    padding: 15px;
  }
  .page-title .lead .ja {
    font-size: 1.5em;
  }
  .page-title .img img {
    height: 100px;
  }
  .img-grid img {
    height: 100px;
  }
  /* title */
  .title {
    margin: 0 auto 20px;
  }
  .title .en {
    font-size: 1.8rem;
  }
  .title .ja {
    font-size: 1.35em;
  }
  .title--slash .ja {
    padding: 0;
  }
  .title--marker {
    font-size: 1.7rem;
  }
  .box-head {
    font-size: 1.4em;
  }
  .roomSection .roomBody {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .roomSection .roomHdr {
    margin-bottom: 10px;
  }
  .roomSection .roomPhoto {
    aspect-ratio: 4/2.2;
  }
  /* sp_menu */
  .btn__box {
    width: 100%;
    -webkit-perspective: 200px;
    perspective: 200px;
  }
  .btn__box a {
    width: 100%;
  }
  .btn__box:after {
    width: 100%;
    width: 100%;
  }
  /* --- フィルター（2列 → 1〜2列に） --- */
  .resvFilter {
    grid-template-columns: 1fr 1fr;
    /* 用途 / 日付 が左右に並ぶ */
    gap: 12px 10px;
    padding: 10px;
    /* 到着予定時間 と 検索ボタンは幅いっぱい */
  }
  .resvFilter__group {
    gap: 4px;
  }
  .resvFilter__group:nth-child(3), .resvFilter__submit {
    grid-column: 1/-1;
  }
  .resvFilter .resvLabel {
    font-size: 0.8em;
  }
  .resvFilter .resvField select,
  .resvFilter .resvField input[type=date],
  .resvFilter .resvField input[type=text],
  .resvFilter .resvField.-datalist input {
    height: 46px;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 12px;
  }
  .resvFilter .btn.-primary {
    width: 100%;
  }
  .resvCard {
    padding: 12px;
  }
  .resvCard__head {
    gap: 12px;
  }
  .resvCard__thumb {
    width: 120px;
    border-radius: 12px;
  }
  .resvCard__title {
    font-size: 1rem;
    line-height: 1.3;
  }
  .resvCard .resvCalendar {
    border-radius: 8px;
  }
  .resvCard .resvCalendar .resvTable {
    font-size: 0.9em;
    /* 1列目（プラン）固定幅にして読みやすく */
  }
  .resvCard .resvCalendar .resvTable th,
  .resvCard .resvCalendar .resvTable td {
    padding: 10px 8px;
  }
  .resvCard .resvCalendar .resvTable .stickyCol {
    min-width: 84px;
    max-width: 120px;
    left: 0;
  }
  .resvCard .resvCalendar .resvTable .slotMark {
    border-width: 2px;
  }
  .resvTable--multi thead th,
  .resvTable--multi tbody td {
    min-width: 50px;
  }
  .resvNext {
    position: sticky;
    /* iOS Safariで安定して効く */
    bottom: 0;
    z-index: 5;
    padding: 10px calc(12px + env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) calc(12px + env(safe-area-inset-left));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 35%);
    /* 上に薄いグラデ */
    text-align: center;
  }
  .resvNext .btn {
    width: 100%;
    height: 50px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .form-wrapper {
    padding: 8px;
  }
  .form-group {
    padding: 12px 0;
  }
  .form-btn a {
    margin: 10px auto 0;
  }
  .btn-flex {
    gap: 0;
    flex-direction: column;
  }
  .call-btn .call-head {
    padding: 5px 10px;
    font-size: 1em;
    line-height: 1.5;
  }
  .call-btn a .call-txt {
    padding: 10px;
  }
  .call-btn a .call-txt .icon {
    margin-right: 15px;
    font-size: 2em;
  }
  .call-btn a .call-txt .text {
    font-size: 1.2em;
  }
  .call-btn a .call-txt .subtext {
    font-size: 0.8em;
  }
  .cta-btn a {
    font-size: 1.3em;
    padding: 16px 0;
  }
  .cta-btn a span {
    font-size: 0.8em;
  }
  .menu-btn .inner .menu-img img {
    max-width: 150px;
  }
  .breadcrumb {
    font-size: 10px;
    max-width: 98%;
    margin: 10px auto 0;
    padding: 0 10px;
  }
  .box {
    padding: 12px;
  }
  .box--center {
    padding: 12px;
  }
  .box--message {
    font-size: 1.2em;
  }
  .slider__img {
    margin-bottom: 10px;
  }
  .slider__img img {
    height: 100px;
  }
  .slider__item {
    padding: 1em;
  }
  .slider__text {
    font-size: 0.8em;
  }
  .slider__meta {
    font-size: 1em;
  }
  .slider__head {
    min-height: 100px;
  }
  .slider__head::before, .slider__head::after {
    font-size: 13px;
  }
  .slider__head .ttl {
    font-size: 0.8em;
  }
}