@charset "utf-8";

/* reset ----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: top;
  height: auto;
}

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

li {
  list-style: none;
}

/* Remove default margin & padding */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* common ---------------------------------------*/
html {
  scroll-behavior: smooth;
}

body,
.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  color: #353535;
  background-color: #fff;
  font-family: sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-feature-settings: "palt";
}

.text_center {
  text-align: center;
}
.text_start {
  text-align: start;
}
.center {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
  z-index: 100;
}

.full {
  width: 100%;
}

img {
  width: 100%;
  /* PCの右クリック禁止 */
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

/* PC tablet -------------*/
@media screen and (min-width: 835px) {
  body {
    width: 100%;
    height: 100vh;
  }
  .container {
    width: 500px;
    box-shadow: 0 0 200px rgba(0, 0, 0, .15);
    overflow: scroll;
    scroll-behavior: smooth;
  }
  section {
    scroll-margin-top: 0px;
  }
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}


/* text -----------------------------------------*/
.underline {
  text-decoration: underline;
}

/* SP-common ---------------------------- */
.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

/* btn ---------------------------------------- */
.btn-container {
  position: relative;
}
.btn-box {
  position: absolute;
  z-index: 100;
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 0 15%;
  top: 71vw;
}
.btn-box>a {
  transition: transform 0.2s;
}
.btn-box>a:hover {
  opacity: .85;
}
.btn-box>a:active {
  transform: scale(0.95);
}

/* fixed-btn --- */
.fixed-btn {
  width: 100%;
  z-index: 1000;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2%;
}
.btn__fixed {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  transition: .3s;
}
.btn__fixed:hover {
  opacity: .9;
}
.btn__fixed>img {
  width: 100%;
}

/* map ---------------------------------------- */
.map {
  width: 100%;
  left: auto;
  height: 400px;
}

/* pc --------------------------------------------*/
@media screen and (min-width: 835px) {
  .btn-box {
    top: 71%;
  }
  .fixed-btn {
  position: fixed;
  right: 3%;
  /* ←ここをpxじゃなく「%」で指定するのがミソ！ */
  bottom: 40px;
  left: auto;
  /* スマホの中央寄せを解除 */
  transform: none;
  /* スマホの中央寄せを解除 */
  width: 390px;
  /* ボタンの幅を調整（好みで） */
  }

  .btn__fixed {
    width: 100%;
    /* 親divに合わせる */
  }
}