@charset "UTF-8";
/*----------------------------------------
	variables
----------------------------------------*/
:root {
  --c_main: #D296A7;
  --c_sub: #805B65;
  --c_base: #FBF8F5;
  --c_black: #333333;
  --c_white: #FFFFFF;
  --f_sans: "Noto Sans JP", serif;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  font-family: var(--f_sans);
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  color: var(--c_black);
  line-height: 1;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--c_black);
  transition: all 0.3s;
  cursor: pointer;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/*----------------------------------------
    style.css抜粋
----------------------------------------*/
/* 共通
------------------------------------------------------------*/
.inner {
  width: 94%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.innerS {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 80px;
}

.innerS a {
  color: #000;
  font: 400;
}

/* SEC01 WORKS
------------------------------------------------------------*/
#sec01 {
  margin: 0 10%;
}

.works {
  width: 100%;
  display: flex;
}

.works li {
  float: left;
  width: 25%;
  line-height: 0;
}

.hover {
  position: relative;
}

.hover .hover-img {
  margin: 0;
  padding: 0;
}

.hover-img img {
  width: 100%;
  height: 100%;
}

.hover .hover-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.hover:hover .hover-shadow {
  opacity: 1;
}

#innerT {
  margin: 0;
  text-align: center;
}

.sec03 {
  display: flex;
  justify-content: center;
}

.sec03 img {
  max-width: 95%;
  height: auto;
  display: flex;
}

/*（タブレット用） */
@media screen and (min-width: 481px) {
  .sec03 img {
    width: 80%;
    height: auto;
  }
}
/* （PC用） */
@media screen and (min-width: 960px) {
  .sec03 img {
    width: 300px;
    height: auto;
  }
}
/* SEC03 CON
------------------------------------------------------------*/
#footer_nav {
  clear: both;
  font: 14px / 1.9 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
}

#footer_nav a {
  color: #555;
}

#footer_nav a:hover {
  color: #D296A7;
}

#footer_nav .inner {
  padding: 40px 0;
  overflow: hidden;
  font-weight: 200;
}

#footer_nav .grid {
  margin: 0;
}

#footer_nav #info {
  float: left;
}

#footer_nav #info .info {
  float: none;
}

#footer_nav #info .info {
  clear: both;
  text-align: left;
}

.sns {
  width: 100%;
  text-align: center;
  align-content: center;
}

.sns_icon img {
  width: 30px;
  margin: 5px;
}

#footer_nav .logo {
  font-size: 18px;
}

#footer_nav .info .tel, #footer .info .tel span, #footer #info .open {
  font-size: 12px;
}

ul.footnav {
  float: right;
  text-align: left !important;
  padding: 10px 0;
}

ul.footnav ul {
  display: none;
}

ul.footnav li {
  float: left;
  margin: 10px 0 0;
  padding: 0 7px 0 8px;
  font-size: 12px;
}

#footer {
  clear: both;
  padding: 10px 50px 10px 0;
  text-align: center;
  font-size: 12px;
  color: #FFF;
  background: #D296A7;
  font-weight: 200 !important;
}


/* RESPONSIVE 設定
------------------------------------------------------------*/
@media only screen and (min-width: 1200px) {
  .inner {
    width: 1024px;
  }
}
@media only screen and (max-width: 799px) {
  .works {
    display: block;
  }
  .works li {
    width: 50%;
  }
  #innerA {
    display: block;
  }
  #innerA img {
    margin-left: 40px;
  }
  #footer_nav .grid, #footer_nav ul.footnav {
    float: none;
    width: 100%;
    text-align: center;
  }
  ul.footnav li {
    float: none;
    display: inline-block;
  }
  .grid {
    float: left;
    width: 32%;
    margin: 10px 0 0 1%;
  }
  #footer_nav .grid img, #footer .info {
    float: none;
  }
  #footer_nav .grid p {
    display: block;
  }
  #footer_nav #info .info {
    float: none;
    text-align: center;
  }
  #footer_nav.logo, #footer .info {
    width: 100%;
    float: none;
  }
  #footer_nav .logo p {
    float: none;
    display: block;
  }
  #footer_nav .logo img {
    float: none;
    padding: 0;
  }
}
/*（タブレット用） */
@media screen and (min-width: 481px) {
  .sns {
    text-align: left;
  }
}
/* （PC用） */
@media screen and (min-width: 960px) {
  .sns {
    text-align: left;
  }
}
/*----------------------------------------
	width-pets追加分
----------------------------------------*/
/*----------------------------------------
	header
----------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 27px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--c_white);
}

@media screen and (max-width: 834px) {
  .header {
    padding: 13px 18px;
  }
}
/*----------------------------------------
	hamburger
----------------------------------------*/
.hamburger {
  display: none;
  width: 28px;
  height: 24px;
  position: fixed;
  top: 26px;
  right: 20px;
  z-index: 20;
  border: none;
  background-color: var(--c_white);
}

.hamburger__line {
  width: 28px;
  height: 3px;
  background: var(--c_black);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--c_black);
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.hamburger__line::before {
  top: -10px;
}

.hamburger__line::after {
  top: 10px;
}

/*OPEN時スタイル*/
.hamburger[aria-expanded=true] .hamburger__line {
  background: transparent;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

@media screen and (max-width: 834px) {
  .hamburger {
    display: block;
  }
}
/*----------------------------------------
	gnav
----------------------------------------*/
/*PC*/
.gnav-pc .gnav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.gnav-pc .gnav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.gnav-pc .gnav__link:hover {
  color: var(--c_main);
}
.gnav-pc .gnav--en {
  font-weight: 500;
  font-size: 14px;
}
.gnav-pc .gnav--ja {
  font-weight: 400;
  font-size: 10px;
}

/*SP*/
.gnav-sp {
  display: none;
  position: fixed;
  width: 100%;
  inset: 0;
  z-index: 10;
  background: var(--c_white);
  padding: 13px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.gnav-sp .gnav__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
  margin-top: 50px;
}
.gnav-sp .gnav__link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gnav-sp .gnav__link:hover {
  color: var(--c_main);
}
.gnav-sp .gnav--en {
  font-weight: 500;
  font-size: 14px;
}
.gnav-sp .gnav--ja {
  font-weight: 400;
  font-size: 10px;
}

@media screen and (max-width: 834px) {
  .gnav-pc {
    display: none;
  }
}
/*----------------------------------------
	main
----------------------------------------*/
.main {
  margin-top: 82px;
}

@media screen and (max-width: 767px) {
  .main {
    margin-top: 80px;
  }
}
/*----------------------------------------
	container
----------------------------------------*/
.container {
  max-width: 1180px;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
}

/*----------------------------------------
	section
----------------------------------------*/
.section {
  padding: 100px 0;
}

.section + .section {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}
/*----------------------------------------
    heading
----------------------------------------*/
.heading-lv2{
  flex-shrink: 0;
}
.heading-lv2--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .heading-lv2--pc {
    display: none;
  }
  .heading-lv2--sp {
    display: block;
    font-weight: 700;
    font-size: 35px;
    color: var(--c_base);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  }
}
/*----------------------------------------
    button
----------------------------------------*/
.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s;
  cursor: pointer;
  color: var(--c_white);
  background-color: var(--c_main);
  box-shadow: 2px 2px 0 var(--c_sub);
  border-radius: 10px;
  border: 1px solid var(--c_main);
}

.btn:hover {
  color: var(--c_main);
  background-color: var(--c_white);
  box-shadow: none;
}

.btn--gnav {
  display: flex !important;
  padding: 7px 14px;
}

.btn--check {
  width: 142px;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  position: relative;
}

.btn--check::after {
  content: "▶︎";
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  color: var(--c_main);
  background-color: var(--c_white);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  font-size: 5px;
  display: grid;
  place-content: center;
  padding-left: 3px;
}

.btn--check:hover.btn--check::after {
  color: var(--c_white);
  background-color: var(--c_main);
}

.btn--reserve {
  width: 343px;
  font-size: 18px;
  letter-spacing: 0;
  padding: 15px 0 !important;
}

@media screen and (max-width: 767px) {
  .btn {
    border-radius: 5px;
  }
  .btn--check {
    width: 114px;
    padding: 4px 0;
    font-size: 12px;
  }
  .btn--check::after {
    right: 6px;
    width: 7px;
    height: 7px;
    font-size: 5px;
    padding-left: 2px;
  }
  .btn--reserve {
    width: 279px;
    font-size: 14px;
    padding: 13px 0;
  }
}
/*----------------------------------------
    accent
----------------------------------------*/
.marker--pink {
  font-weight: 700;
  position: relative;
}

.marker--pink::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.5em;
  background-color: #EFD6DD;
  z-index: -1;
}

/*----------------------------------------
    br--pc
----------------------------------------*/
@media screen and (max-width: 767px) {
  .br--pc {
    display: none;
  }
}
/*----------------------------------------
	トップページ専用
----------------------------------------*/
/* ファーストビュー
------------------------------ */
.fv {
  background-image: url(../img/firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 600px;
  position: relative;
}

.fv__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fv__ttl--ja {
  color: var(--c_white);
  font-weight: 600;
  font-size: 24px;
}

.fv__ttl--en {
  color: var(--c_white);
  font-weight: 700;
  font-size: 60px;
}

@media screen and (max-width: 767px) {
  .fv {
    width: 100%;
    height: 247px;
  }
  .fv__ttl {
    gap: 10px;
  }
  .fv__ttl--ja {
    font-weight: 700;
    font-size: 14px;
  }
  .fv__ttl--en {
    font-weight: 600;
    font-size: 24px;
  }
}
/* リード
------------------------------ */
.lead__ttl {
  text-align: center;
  line-height: 1.6;
}

.lead__list {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 110px;
}

.lead__item {
  background-color: var(--c_base);
  padding: 35px 20px 15px;
  position: relative;
  border: 1px solid var(--c_black);
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 359px;
}

.lead__capacity {
  position: absolute;
  top: -20px;
  left: -1px;
  z-index: 1;
  border: 1px solid var(--c_black);
  width: 158px;
  text-align: center;
  padding: 7px 0;
  background-color: var(--c_white);
}
.lead__capacity p {
  font-size: 14px;
}
.lead__capacity span {
  font-size: 20px;
  font-weight: 600;
}

.lead__heading-lv2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lead__heading-lv2--sm {
  font-size: 14px;
  white-space: nowrap;
}

.lead__heading-lv2--lg {
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.lead__img {
  margin-top: 10px;
  border-radius: 10px;
}

.lead__link {
  margin-top: 10px;
}

@media screen and (max-width: 834px) {
  .lead__ttl {
    text-align: left;
  }
  .lead__list {
    flex-direction: column;
    gap: 34px;
    margin-top: 71px;
  }
  .lead__item {
    padding: 15px 10px;
    flex-direction: row-reverse;
    align-items: start;
    justify-content: start;
    width: 100%;
    max-width: none;
    gap: 5px;
  }
  .lead__capacity {
    width: 163px;
    padding: 2px 0 5px 0;
  }
  .lead__heading-lv2 {
    align-items: start;
    gap: 8px;
  }
  .lead__heading-lv2--sm {
    font-weight: 400;
    font-size: 12px;
  }
  .lead__heading-lv2--lg {
    font-size: 16px;
    font-weight: 700;
  }
  .lead__img {
    width: 124px;
    margin-top: 0;
    border-radius: 0;
  }
  .lead__link {
    margin-top: 0;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
/* 各部屋紹介
------------------------------ */
.width-pets__box {
  display: flex;
  gap: 52px;
  justify-content: space-between;
  max-width: 972px;
  margin-right: auto;
  margin-left: auto;
}

.width-pets__ttl {
  font-size: 24px;
  font-weight: 600;
}

.width-pets__txt {
  line-height: 1.6;
  margin-top: 15px;
}

.widh-pets__img {
  margin-top: 34px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.widh-pets__room {
  margin-top: 80px;
  display: grid;
  gap: 30px 40px;
  grid-template-columns: repeat(3, 1fr);
}

.width-pets__list {
  margin-top: 100px;
  max-width: 972px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--c_black);
}

.width-pets__team {
  width: 13%;
  background-color: var(--c_base);
  padding: 10px;
  border-bottom: 1px solid var(--c_black);
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.width-pets__desc {
  width: 87%;
  padding: 10px;
  border-bottom: 1px solid var(--c_black);
  font-size: 14px;
  line-height: 1.6;
}

.width-pets__accordion {
  margin-top: 100px;
  max-width: 972px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid var(--c_black);
}

.width-pets__accordion-summary {
  padding: 20px;
  background-color: var(--c_base);
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.width-pets__accordion-summary:after {
  content: "";
  position: absolute;
  top: 30%;
  right: 21px;
  width: 14px;
  height: 14px;
  border-left: 3px solid var(--c_black);
  border-bottom: 3px solid var(--c_black);
  transform: rotate(-45deg);
}

details[open] .width-pets__accordion-summary::after {
  top: 40%;
  transform: rotate(135deg);
}

.width-pets__accordion-list {
  border-top: 1px solid var(--c_black);
  margin: 53px 40px;
  display: flex;
  flex-wrap: wrap;
}

.width-pets__accordion-term {
  border-bottom: 1px solid var(--c_black);
  width: 13%;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.width-pets__accordion-desc {
  border-bottom: 1px solid var(--c_black);
  width: 87%;
  padding: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.width-pets__btn {
  margin-top: 50px;
  padding: 10px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.width-pets__note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .width-pets__box {
    flex-direction: column;
    gap: 15px;
  }
  .width-pets__ttl {
    font-size: 18px;
  }
  .width-pets__txt {
    font-size: 14px;
    margin-top: 15px;
  }
  .widh-pets__img {
    margin-top: 20px;
  }
  .widh-pets__room {
    margin-top: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .width-pets__list {
    margin-top: 40px;
  }
  .width-pets__team {
    width: 100%;
    text-align: left;
  }
  .width-pets__desc {
    width: 100%;
  }
  .width-pets__accordion {
    margin-top: 40px;
  }
  .width-pets__accordion-summary {
    font-size: 12px;
    padding: 15px;
    font-weight: 700;
  }
  .width-pets__accordion-summary:after {
    top: 30%;
    right: 15px;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--c_black);
    border-bottom: 2px solid var(--c_black);
  }
  .width-pets__accordion-list {
    margin: 40px 20px;
  }
  .width-pets__accordion-term {
    width: 100%;
    padding: 10px;
    background-color: var(--c_base);
  }
  .width-pets__accordion-desc {
    width: 100%;
  }
  .width-pets__btn {
    margin-top: 40px;
  }
  .width-pets__note {
    margin-top: 20px;
    font-size: 12px;
    width: 252px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* チェックイン
------------------------------ */
.check-in {
  margin-bottom: 100px;
  background-color: var(--c_base);
  border: 1px solid var(--c_black);
  padding: 70px 96px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
}

.check-in__heading-lv2 {
  font-size: 55px;
  font-weight: 700;
  color: var(--c_white);
  -webkit-text-stroke: 1.5px var(--c_black);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.check-in__ttl {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 600;
}

.check-in__txt {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
}
.check-in__txt span {
  font-size: 18px;
  font-weight: 600;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .check-in {
    margin-bottom: 50px;
    padding: 20px !important;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .check-in__heading-lv2 {
    font-size: 40px;
  }
  .check-in__ttl {
    margin-top: 15px;
    font-size: 16px;
  }
}