/* =============================
   全体構造
============================= */

.wrapper{
  display:flex;
  justify-content:space-evenly;
  min-height:100vh;
  position:relative;
}

p, a {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #0F1419;
}

h2{
  text-align: center;
}

/* 左右カラム */
.side{
  flex:1;
  max-width:320px;
  position:sticky;
  top:0;
  height:100vh;
  pointer-events:none; 
  user-select:none;
}
.side-content{
  pointer-events:auto; 
}

.side.left{
  text-align:center;
  max-width: 300px;
  padding-top: 22vh;
}

.side.left img{
  max-width: 300px;
}

.button-img-left{
  margin-bottom: 30px;
}

.button-text-left{
  max-width: 270px;
  margin: 0 auto;
}

.button-text-left a{
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
  width: 100%;
  border-radius: 100px;
  transition-duration: .4s;
}

.button-img-left a:hover{
  transform: scale(1.1);
}

.button-text-left a:hover{
  transform: scale(1.1);
}


.side.right{text-align:left;padding-left:24px;}


/* 中央カラム */
.center{
  width:466px;
  max-width:100%;
  padding:0;
  overflow:hidden; /* ← 内部はtransformで動くのでスクロールバーなし */
  position:relative;
  background:rgba(255,255,255,0.92);
  box-shadow:0 0 16px rgba(0,0,0,0.15);
}
.center-inner{
  position:relative;
  will-change:transform;
  transition:transform 0.15s ease-out;
}

/* 画像保護 */
.no-save{
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:auto;
}

/* =============================
   Responsive
============================= */
@media(max-width:1066px){
  .side .side-content{display:none}
}
@media(max-width:767px){
  .side{display:none}
  .center{width:100vw}
}

/* ヘッダー */

.header-area{
  background-color: #725050;
  height: 50px;
  text-align: center;
  margin-bottom: 30px;
}

.header-area img{
  max-width: 60px;
  margin: 10px;
}

.pr-ttl {
  margin: 0 auto;
  text-align: center;
}

.pr-ttl img{
  max-width: 396px;
}

h1{
  font-size: 35px;
  font-weight: bold;
  width: 396px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.pr-banner{
  text-align: center;
  margin-bottom: 50px;
}

.pr-banner img{
  max-width: 396px;
}

.pr-text{
  text-align: center;
  margin-bottom: 10px;
}

.pr-anchor{
  text-align: center;
  margin-bottom: 50px;
}

.pr-anchor a{
  border-bottom: 1px solid #0F1419;
}

.pr-content-end img{
  width: 100%;
}

.lead-ttl{
  padding:50px 0 30px 0;
}

#sec2,#sec3{
  text-align: center;
}

.button-text-center a{
  display: inline-block;
  text-align: center;
  width: 270px;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
  border-radius: 100px;
  transition-duration: .4s;
  margin-top: 20px;
  margin-bottom: 50px;
}

.point-box{
  width: 395px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.red-bld{
  font-weight: 700;
  color: #FF0000;
}

.button-img-center img{
  width: 300px;
}

.detail-box{
  padding: 0 35px;
}

.detail-box h3{
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #0F1419;
  margin-bottom: 10px;
}

.detail-box p{
  font-size: 18px;
  text-align: left;
  margin-bottom: 30px;
}

footer{
  background-color: #725050;
  display: flex;
  justify-content: space-between;
  height: 50px;
  padding: 10px;

}

footer p{
  color: #fff;
  font-size: 14px;
}

footer a{
  font-size: 14px;
}



/* メディアクエリSP サイズ調整*/

@media(max-width:767px){
  .pr-ttl img{
    max-width: 84.76vw;
  }

  h1{
  font-size: 7.51vw;
  width: 84.76vw;
  margin-bottom: 6.44vw;
}

.pr-banner{
  margin-bottom: 10.73vw;
}

.pr-banner img{
  max-width: 84.76vw;
}

.pr-text{
  margin-bottom: 2.15vw;
}

.pr-anchor{
  margin-bottom: 10.73vw;
}

.lead-ttl{
  padding:10.73vw 0 6.44vw 0;
}

.button-text-center a{
  width: 57.94vw;
  font-size: 4.29vw;
  padding: 2.15vw;
  border-radius: 21.46vw;
  margin-top: 4.29vw;
  margin-bottom: 10.73vw;
}

.point-box{
  width: 84.76vw;
  padding: 4.29vw;
  border-radius: 2.15vw;
  margin-bottom: 6.44vw;
}

.button-img-center img{
  width: 64.38vw;
}

.detail-box{
  padding: 0 7.51vw;
}

.detail-box h3{
  font-size: 20px;
  margin-bottom: 2.15vw;
}

.detail-box p{
  font-size: 18px;
  margin-bottom: 6.44vw;
}

}