@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Satisfy&display=swap");
/* 変数 */
:root {
  /* 色 */
  --primary: #ff953a;
  --darkgray: #222222;
  --midgray: #414141;
  --gray: #888888;
  --white: #ffffff;
  /* 左右の余白 */
  --side: 6vw;
}

/* サイズの基準： 1rem = 100px */
:root {
  font-size: 100px;
}

/* テキストの基本設定 */
body {
  color: var(--darkgray);
  font-size: 0.16rem;
  font-family: sans-serif;
  line-height: 1.8;
}

/* リセット / ノーマライズ / サニタイズ */
body, h1, h2, h3, h4, h5, h6, p, ul, figure {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/*-----------------------------------*/
.bg-slider {
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  position: relative;
  /* display: flex; */
}

.bg-slider::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-slider-title {
  color: white;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: lighter;
  letter-spacing: 0.1em;
  z-index: 10;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-40%, -50%);
}

.bg-slider-title span {
  font-size: 15px;
}

.mail-address {
  position: relative;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -70%);
}

.mail {
  color: white;
  font-family: "ＭＳ 明朝",serif;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.01em;
}

.address {
  font-size: 10px;
  font-family: "ＭＳ 明朝",serif;
  text-align: center;
  color: white;
}

.copy {
  text-align: center;
  font-family: "ＭＳ 明朝",serif;
  font-size: 10px;
  margin-top: 20px;
  color: white;
}

@media (min-width: 768px) {
  /* 横幅が800px以上の場合に適用するスタイル */
  div.mail-address {
    padding-top: 20px;
  }
  div.mail-address p {
    font-size: 15px;
  }
}
