@charset "utf-8";
/* CSS Document */
/*--------------------------------------------------
 common 共通の設定
----------------------------------------------------*/
.pcOnly {
  display: block;
}
.spOnly {
  display: none;
}
article {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444;
  width: 100%;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
}
/*見出し*/
article h2 {
  font-size: 3rem;
  position: relative;
  padding: 1.5rem;
  text-align: center;
  margin-block-start:120px;
}
article h2 span {
  font-size: 1.8rem;
  display: block;
}
article h2:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #fa4141;
}
/*テキスト*/
article .txt {
  max-width: 600px;
  margin: 50px auto;
}
/*スマホ表示*/
@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
  article .txt {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*--------------------------------------------------
 #top
----------------------------------------------------*/
#top{
padding-block-start:40px;
}
.top_img{
margin: 0 auto;
text-align: center;
max-width: 960px;
}
/*--------------------------------------------------
 #lead
----------------------------------------------------*/
/*--------------------------------------------------
 #plan
----------------------------------------------------*/
#plan figure {
  max-width: 960px;
  margin: 50px auto;
}
.plan_img{
text-align: center;
}
/*スマホ表示*/
@media screen and (max-width: 767px) {
  #plan figure {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*--------------------------------------------------
 #photos
----------------------------------------------------*/
/*--------------------------------------------------
 #area
----------------------------------------------------*/
#area figure {
  max-width: 960px;
  margin: 50px auto;
}
/*スマホ表示*/
@media screen and (max-width: 767px) {
  #area figure {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*--------------------------------------------------
 #virtualtour
----------------------------------------------------*/
#virtualtour {
  max-width: 960px;
  margin: 50px auto;
}
.vrbox {
  width: 100%;
}
.vrbox iframe {
  height: 600px;
}
#virtualtour .vrbox {
  width: 100%;
}
/*スマホ表示*/
@media screen and (max-width: 767px) {
  .vrbox iframe {
    padding-left: 10px;
    padding-right: 10px;
    height: 400px;
  }
}
/*--------------------------------------------------
 #details
----------------------------------------------------*/
#details div {
  max-width: 960px;
  margin: 50px auto 0;
}
#details table {
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
}
#details table th, #details table td {
  border-block-end: 1px solid #DDDAD1;
  padding-inline-start: 8px;
  vertical-align: middle;
  font-style: normal;
  height: 2.8em;
  text-align: justify;
}
#details table th {
  width: 15%;
  font-weight: normal;
}
/*スマホ表示*/
@media (max-width: 767px) {
  #details div {
    padding-left: 10px;
    padding-right: 10px;
  }
  #details table {
    width: 100%;
  }
  #details table th, #details table td {
    display: block;
    width: 100%;
    height: auto;
    border-block-end: 0px;
    padding: 3px 10px;
  }
  #details table th {
    background-color: #E5E0D1;
  }
}
/*--------------------------------------------------
 #gmap
----------------------------------------------------*/
#gmap {
  text-align: center;
  margin: 5vw auto;
}
#gmap iframe {
  max-width: 960px;
}
/*スマホ表示*/
@media (max-width: 639px) {
  #gmap iframe {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*--------------------------------------------------
 #form
----------------------------------------------------*/
#form {
  text-align: center;
  margin: 5vw auto;
}
/* ---------------------------
.toform
------------------------------ */
#toform {
  height: 90px;
  width: 90px;
  position: fixed;
  bottom: 3%;
  right: 1.5%;
  z-index: 11;
  line-height: 90px;
  background: #00334E;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}
#toform:hover {
  transform: scale(1.2);
  background: #EE6F57;
}
#toform a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: absolute;
  top: 22%;
  left: 22%;
}
#toform span {
  align-self: center;
  color: #FFFFFF;
  font-size: 50px;
}
.bl_backToTop {
  z-index: 98;
}
#toform.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#toform.DownMove {
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
/*スマホ表示*/
@media screen and (max-width:639px) {
  #toform {
    height: 70px;
    width: 70px;
  }
  #toform span {
    font-size: 40px;
  }
}