@charset "utf-8";

/** ***************************************************************************
 * 共用
 * ************************************************************************* */

#main {
  padding-bottom: 0;
}

/** ***************************************************************************
 * 施設について
 * ************************************************************************* */

/**
 * 間取り図
 */

#facility div.map {
  text-align: center;
}

/**
 * 施設一覧
 */

/* 施設名 */

#facility div.facility dl.list dt {
  margin-bottom: 15px;
  padding: 0.25em 1.5em;
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  border-radius: 9999px;
  background-color: rgb(var(--accentcolor-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像 */

#facility div.facility dl.list dd.image {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width:768px) {

  #facility div.facility dl.list dd.image {
    border-radius: 20px;
  }

}

/* テキスト */

#facility div.facility dl.list dd.text {
  text-align: center;
}

/** ***************************************************************************
 * お部屋のご案内
 * ************************************************************************* */

#room {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}

#room::after {
  content: '';
  width: var(--innerWidth);
  max-width: none;
  height: 100%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--innerCenter);
  clip-path: shape(
    from 0 18px,
    curve to 100% 8px with 35% 40px / 65% -17px,
    vline to 100%,
    hline to 0%,
    close
  );
}

@media screen and (min-width:768px) {

  #room {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  #room::after {
    clip-path: shape(
      from 0 30px,
      curve to 100% 30px with 30% 150px / 65% -70px,
      vline to 100%,
      hline to 0%,
      close
    );
  }

}

/**
 * 見取り図
 */

#room div.map {
  text-align: center;
}

/**
 * 画像
 */

#room div.image {
  text-align: center;
}

/**
 * お部屋の装備品
 */

#room div.equipment dl.list dt {
  margin-bottom: 10px;
  color: rgb(var(--accentcolor-3));
  font-size: 1.25em;
  font-weight: 500;
}

#room div.equipment dl.list dd {
  margin-left: 1.5em;
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

#room div.equipment dl.list dd ~ dd {
  margin-top: 0.375em;
}

#room div.equipment dl.list dd::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.625em;
  margin-right: 0.25em;
  border-radius: 9999px;
  background-color: rgb(var(--color-basic));
}

/* 備考 */

#room div.equipment .memo {
  font-size: 0.875em;
}

/**
 * 設備一覧
 */

@media screen and (min-width:768px) {

  #room div.facility {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

}

/* 施設名 */

#room div.facility dl.list dt {
  margin-bottom: 15px;
  padding: 0.25em 1.5em;
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  border-radius: 9999px;
  background-color: rgb(var(--accentcolor-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像 */

#room div.facility dl.list dd.image {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width:768px) {

  #room div.facility dl.list dd.image {
    border-radius: 20px;
  }

}

/** ***************************************************************************
 * スタッフ
 * ************************************************************************* */

#staff {
  margin-top: -40px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

#staff::after {
  content: '';
  width: var(--innerWidth);
  max-width: none;
  height: 100%;
  background-color: rgb(var(--accentcolor-2));
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--innerCenter);
  clip-path: shape(
    from 0 18px,
    curve to 100% 8px with 35% 40px / 65% -17px,
    vline to calc(100% - 16px),
    curve to 0 calc(100% - 8px) with 65% calc(100% - 40px) / 33% calc(100% + 17px),
    close
  );
}

@media screen and (min-width:768px) {

  #staff {
    margin-top: -80px;
    padding-top: 200px;
    padding-bottom: 200px;
  }

  #staff::after {
    clip-path: shape(
      from 0 30px,
      curve to 100% 30px with 30% 150px / 65% -70px,
      vline to calc(100% - 40px),
      curve to 0 calc(100% - 40px) with 65% calc(100% - 145px) / 33% calc(100% + 80px),
      close
    );
  }

}

/**
 * 画像
 */

#staff div.image {
  text-align: center;
}

/** ***************************************************************************
 * アクセスマップ
 * ************************************************************************* */

#map {
  margin-top: -80px;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}

#map::after {
  content: '';
  width: var(--innerWidth);
  max-width: none;
  height: 100%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--innerCenter);
}

@media screen and (min-width:768px) {

  #map {
    margin-top: -100px;
    padding-top: 200px;
    padding-bottom: 160px;
  }

}

/**
 * アクセスマップ
 */

#map div.map {
  height: 75vw;
  position: relative;
  z-index: 0;
}

#map div.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

@media screen and (min-width:768px) {

  #map div.map {
    height: 500px;
  }

}
