:root {
  /* FONT */
  --notoSans: 'Noto Sans Japanese', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --notoSerif: 'Noto Serif JP', serif;
  --minchoOld: 'Zen Old Mincho', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  --minchoGothic: 'Zen Kaku Gothic New', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;

  /* COLOR */
  --main: #af9b6b;
  --white: #fff;
  --accent: #ef7014;
  --txt: #1a1a1a;
  --gray: #d9d9d9;

  /* SPACING */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;

  /* Only works if there is nothing absolutely positioned in relation body */
  overflow-x: hidden;

  /* Does NOT work on Safari before 2022 */
  scroll-behavior: smooth;
}
body {
  font-family: var(--notoSerif);
}
img {
  display: block;
  width: 100%;
}
header {
  margin-top: 1rem;
}

.sp {
  display: none;
}

.title {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 8rem;
  font-style: normal;
  font-weight: 100;
  line-height: 100%; /* 80px */
  letter-spacing: 4.8px;
  writing-mode: vertical-lr;
  margin: 0;
}

#top {
  background: #b0c3aa;
  /* z-index: -1; */
  /* height: 74rem; */
}

.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  /* 1080px */
  max-width: min(90%, 108rem);
  /* padding: 0; */
  margin: 0 auto;
}

.flex {
  display: flex;
}

.main {
  padding: 7.2rem 0 6.4rem;
  gap: 2.4rem;
  display: flex;
}

.grid {
  display: grid;
}
.grid-top {
  grid-template-columns: 6.4fr 3.2fr;
  /* grid-template-rows: 1fr 1fr; */
  /* position: relative; */
  gap: 1.6rem;
  margin-top: 1rem;
  /* height: min-content; */
}
.grid-rowspan2 {
  grid-row: span 2;
}
.grid-colspan2 {
  grid-column: span 2;
}

.grid-items_top {
  display: grid;
  height: min-content;
  gap: 1.4rem;
}

#hotel_list {
  background: #fffbf5;
  /* padding-top: 6.4rem; */
}

.hotel_list-top {
  /* padding: 1.6rem 0 6.4rem; */
}

.square {
  padding: 6.4rem 0 1.6rem;
  width: min(90%, 55rem);
  margin: 0 auto;
}

.hotel_list-title {
  color: var(--txt, #1a1a1a);
  text-align: center;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 51.2px */
  margin-bottom: 6.4rem;
}

/* **********MAIN************ */
.main_grid {
  grid-template-columns: repeat(auto-fill, minmax(51.2rem, .8fr));
  justify-content: center;
  gap: 5.6rem;
}
.main_grid-img img {
  border-top-right-radius: 6.4rem;
}

.main_grid-title {
  color: var(--txt, #1a1a1a);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 48px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.main_grid-title:link,
.main_grid-title:visited {
  padding: 1.6rem 0;
  text-decoration: none;
  transition: all 0.3s;
}
.main_grid-title:hover,
.main_grid-title:active {
  /* color: #555; */
  transform: scale(1.01);
}

.main_grid-line {
  margin: 1.6rem 0 2.4rem;
}

.main_grid-text {
  color: var(--txt, #1a1a1a);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}

.btn {
  position: relative;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--main);
}

.btn::before {
  transform: translateX(-60%) translateY(-50%) rotate(45deg);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--main);
  border-top: 2px solid var(--main);
  transition: all 0.3s;
}
.btn:hover {
  cursor: pointer;
}

/* **********MAIN************ */

/* **********MAP************ */
#map {
  background: #fffbf5;
  padding-bottom: 11.2rem;
}
.map_title {
  color: #af9b6b;
  text-align: center;
  font-family: 'Roboto';
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 32px */
  letter-spacing: 1.92px;

  padding: 8rem 0 4rem;
}

.map_img-main {
}
.map_img img {
  /* width: initial; */
  border-radius: 24rem;
  border: 1px solid #af9b6b;
}
.map_img {
  width: 90.8rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 24rem;
  border: 1px solid #af9b6b;
  background-color: #fffbf5;
}
.map_img {
}
.map_img-box {
  padding-bottom: 2rem;
  /* padding-bottom: 13.2rem; */
}

#move-top {
  position: fixed;
  bottom: 40px;
  right: 16px;
  z-index: 10;
}
#move-top img {
  width: 54px;
  border: 1px solid black;
  border-radius: 8px;
}


/* width */
::-webkit-scrollbar {
  width: 1px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  /* background: #b30000;  */
}
/* .map_img-box {
  display: flex;
  align-items: center;
}
.map_img-box {

  background-image: url('../img/map-line.svg');
  background-repeat: no-repeat;
  background-position: center;
} */
.map_img-main {
  background-image: url('../img/map-line.svg');
  background-position: center;
  background-repeat: repeat-x;
}
/* **********MAP************ */

/* **********FOOTER************ */
.footer_text {
  color: #000;
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 15.2px; /* 126.667% */
  letter-spacing: 0.36px;
  padding: 1.4rem 0;
}
/* **********FOOTER************ */

/* DEMO for a tag */
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}
