@charset "utf-8";

.main {
  background-image: url("../images/common/bg_01.png");
  background-repeat: no-repeat;
  background-position: top 80% right 25%;
}

/* PC　outline記述　*/

.outline {
  width: 930px;
  max-width: 90%;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.outline span {
  font-size: 14px;
}

.outline h2 {
  font-size: 36px;
  font-weight: lighter;
  color: #005340;
  margin-top: 5px;
}

.outline-area {
  background-color: rgba(255,255,255,0.5);
  border: 1px solid #aaaaaa;
  margin-top: 25px;
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.outline-area dt {
  width: 200px;
  padding: 15px 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
}

.outline-area dd {
  width: calc(100% - 200px);
  padding: 15px 0;
  font-size: 15px;
  line-height: 20px;
}

/* PC　link-button-02記述　*/

.link-button-02 {
  max-width: 600px;
  margin: 80px auto 40px;
  text-align: center;
  background-color: #b60a2d;
  line-height: 60px;
  box-shadow: 4px 4px 6px rgba(90, 104, 112, 0.5);
  font-size: 26px;
  font-weight: 200;
  letter-spacing: 0.4em;
  color: #fff;
}

/*きらっと光る*/

.btnshine{
    /*キラッと光る基点とするためrelativeを指定*/
  position: relative;
    /*ボタンの形状*/  
  display:inline-block;
    background: #b60a2d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    outline: none;
}

/*キラッと光る*/
.btnshine::before {
  content: '';
    /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
    /*キラッと光る形状*/
    width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
  animation: shine 0.9s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.tel {
  text-align: center;
  font-size: 42px;
  font-weight: lighter;
  color: #b60a2d;
  margin: 30px auto 60px;
}

.sp {
  display: none;
}


@media (max-width: 768px) {
  
.main {
  margin-top: 120px;
  background-position: top 40% right 10%;
  }
  
/* スマホ　outline記述　*/

.outline {
  max-width: 90%;
  margin-top: 80px;
}

.outline-area {
  margin-top: 15px;
  padding: 15px;
}
.outline h2 {
  font-size: 20px;
}
  
.outline-area dt {
  width: 30%;
  font-size: 13px;
  line-height: 18px;
  padding-bottom: 0px;
}
  
.outline-area dd {
  width: 70%;
  font-size: 13px;
  line-height: 18px;
}  

/* スマホ　link-button-02記述　*/
  
.link-button-02 {
  max-width: 90%;
  margin: 60px auto 20px;
  background-color: #b60a2d;
  line-height: 30px;
  box-shadow: 4px 4px 6px rgba(90, 104, 112, 0.5);
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: lighter;
  letter-spacing: 0.3em;
  color: #fff;
}
  
.tel {
  font-size: 36px;
  margin: 30px auto 60px;
}
  
.sp {
  display: inline;
}
}
