@charset "UTF-8";
/* CSS Document */
.left-box {
  display: none;
}
@media screen and (min-width:768px) {
  .left-box {
    display: block;
    width: calc(50% - 80px);
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    border-right: 1px solid #333;
  } 
  .left-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    opacity: 0.9;
  }
  .left-box h2 {
    position: absolute;
    font-size: 3rem;
    font-weight: 900;
    color: #FFF;
    text-shadow: 1px 1px #808080;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .center-box {
    width: calc(50% - 80px);
    position: relative;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 0 40px;
  } 
}
/* ---------- main ---------- */
.main{
  width: 89%;
  margin: 100px auto;
}
.main-title {
  width: 100%;
  margin-bottom: 60px;
}
.main-title h2 {
  font-size: 2.4rem;
  line-height: 2.8rem;
}
.info-list {
  position: relative;
  width: 78%;
  margin: 0 auto;
  text-align: left;
}
.info-list h3 {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 900;
  margin-top: 40px;
  text-decoration: underline;
}
.info-list p {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-top: 10px;
}
.info-map {
  width: 100%;
  margin: 10px auto 40px;
}
.info-map iframe {
  width: 100%;
}
.info-space h3 {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 900;
  margin-top: 40px;
  text-decoration: underline;
}
.info-space p {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-top: 10px;
}

/* ---------- IMAGE ---------- */
.image {
  width: 73%;
  margin: 60px auto;
}
/* app */
.app-img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.app-img img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.app-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
/* instagram */
.instagram-img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.instagram-img img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.instagram-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
/* online */
.online-img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.online-img img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.online-img h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 5px #808080;
}
@media screen and (min-width:768px){
  .image {
    width: 100%;
  }
}

/* ---------- footer ---------- */
.footer {
  height: auto;
  padding-top: 20px;
  font-size: 1.4rem;
  position: relative;
}
.footer-logo {
  text-align: left;
  width: 89%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo-img {
  width: 100px;
}
.footer-logo-img img{
  width: 100%;
  object-fit: cover;
}
.footer-logo-instagram img {
  width: 40px;
  padding-right: 40px;
}
.footer p {
  font-size: 1rem;
  padding-bottom: 20px;
}
/***追従するトップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 5vw;
  bottom: 5vw;
  height: 50px;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  color: #333333;
  padding: 0 0 0 30px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/