@charset "UTF-8";

* {
  box-sizing: border-box;
}

body {
  font-family: "Shippori Mincho", serif;
  /* background-color: #5f7955; */
}

section {
  margin-bottom: 100px;
}

img {
  width: 100%;
  max-height: 100vh;
  vertical-align: top;
  object-fit: cover;
  margin-bottom: 40px;
}

p {
  line-height: 1.6;
}

:root {
  --primary-color: #fff;
  --secondary-color: #333;
  --tertiary-color: #000;
}

header {
  min-height: 500px;
  /* height: 100vh; */
  background-image: url(../images/camp6.jpg);
  background-size: cover;
  background-position: center top;
  align-content: center;
  position: relative;
}

#logo {
  display: block;
  width: 100px;
  margin: 0 auto;
}

h1 {
  color: var(--primary-color);
  font-size: 3rem;
  text-shadow: 0 0 4px #000;
  text-align: center;
  /* padding-top: 20px; */
  z-index: 100;
  position: relative;
}

header h1 span {
  font-weight: 400;
  color: var(--primary-color);
  width: 80%;
  margin: 0 auto;
}

.spbr {
  display: none;
}

#mountain1 {
  position: absolute;
  bottom: -5px;
  left: 0;
  margin: 0;
  filter: drop-shadow(0px -12px 6px rgba(0, 0, 0, 0.3));
  z-index: 1;
}

h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  margin-bottom: 40px;
}

.h2span {
  font-size: 2.25rem;
  position: relative;
  padding: 0 60px;
}

.h2span::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--tertiary-color);
  top: 58%;
  right: -100px;
  transform: translateY(20%);
}

.clickbtna {
  display: block;
  width: 320px;
  margin: 20px auto 20px auto;
}

.clickbtn {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  width: inherit;
  border: #143c1a solid 2px;
  padding: 20px;
  transition: 0.3s;
}

.clickbtn:hover {
  color: var(--primary-color);
  font-weight: 400;
  background-color: #143c1a;
  transition: 0.3s;
}

footer {
  background-color: #0099ff;
  text-align: center;
}

.footerbg {
  /* min-height: 80vh; */
  /* background-image: url(../images/sky.jpg); */
  background-position: center bottom;
  background-size: cover;
  position: relative;
}

.footerbg img {
  position: absolute;
  bottom: -10px;
  left: 0;
  margin: 0;
  filter: drop-shadow(0px -12px 6px rgba(0, 0, 0, 0.3));
}

#logo2 {
  width: 80px;
  margin-bottom: 5px;
}

.footerwater {
  color: var(--primary-color);
}

.footerwater .textbox {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 auto;
  padding: 20px 40px 40px;
}

.leftbox {
  font-size: 1.5rem;
}

.leftbox p {
  margin-bottom: 20px;
}

.footerwater ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto 40px auto;
  padding: 0 4%;
}

.footerwater ul li {
  width: 120px;
  border-right: var(--primary-color) 1px solid;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 10px;
}

.footerwater ul li a {
  padding: 0 10px;
}

.footerwater ul li:last-child {
  border-right: none;
}

small {
  display: block;
  text-align: center;
  padding-bottom: 40px;
}

#Yoyaku {
  color: var(--primary-color);
  background-color: rgba(20, 60, 26, 1);
  right: 0;
  bottom: 57%;
  position: fixed;
  padding: 20px;
  transition: 0.4s;
  z-index: 4;
  border: #fff 1px solid;
}

#Yoyaku:hover {
  background-color: #297f36;
  transition: 0.4s;
}

#Otoiawase {
  color: #143c1a;
  font-weight: 900;
  background-color: #fff;
  border: #143c1a solid 2px;
  right: 0;
  bottom: 25%;
  position: fixed;
  padding: 18.3px;
  transition: 0.3s;
  z-index: 5;
}

#Otoiawase p {
  line-height: 1.1;
}

#Otoiawase:hover {
  color: var(--primary-color);
  font-weight: 400;
  background-color: #143c1a;
  transition: 0.3s;
}

@media (max-width: 768px) {
  header h1 span {
    font-size: 2rem;
  }

  .spbr {
    display: block;
    height: 0;
  }

  .h2span {
    font-size: 1.5rem;
    padding: 0 40px;
  }

  .h2span::after {
    width: 60px;
    right: -60px;
  }

  .clickbtna {
    width: 280px;
  }

  .clickbtn {
    font-size: 1rem;
    padding: 10px;
  }

  .footerbg img {
    position: absolute;
    bottom: -2px;
  }

  .footerwater .textbox {
    grid-template-columns: 1fr;
  }

  #Yoyaku {
    padding: 10px;
  }

  #Otoiawase {
    padding: 8px;
  }
}

/* ====================================↑共通事項 =========================================*/