@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #fff;
  color: #6d6d6d;
  font-size: 16px;
  line-height:1.5;
  font-family:"Noto Sans JP","メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

h2 {
  font-size: 120%;
}

h1 {
  text-align: center;
  color: #fff;
  font-size: 150%;
  line-height: 1.5;
  padding: 5px;
}

p{
  line-height: 1.8;
}
/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
  h1 {
    text-align: center;
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    padding: 0.5em;
  }

p {
  line-height: 1.8;
  margin-bottom: 10px;
}
}/* ▲PCメディアクエリ終了▲ */




img {
  max-width: 100%;
  height: auto;
  display: block;
}





.wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

.wrapper p {
  font-size: 16px;
  margin-bottom: 30px;
}
/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.wrapper {
  padding-top: 20px;
  padding-bottom: 45px;
}

.wrapper p {
  font-size: 18px;
  margin-bottom: 30px;
}
}/* ▲PCメディアクエリ終了▲ */






/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #555; /*リンクテキストの色*/
  text-decoration: none;
}

a:hover {
  color: #006ddc; /*マウスオン時の文字色（全体）*/
}

a:hover .btn {
  position: relative;
  top: 3pt;
  left: 3pt;
}

a:hover img{
  opacity:0.8;filter:alpha(opacity=80); /* ホバー時に80%の濃さになる */
}



/*---------- PC・スマホの非表示指定 ----------*/
@media screen and (max-width:768px){.spnone{display:none;}}
@media screen and (min-width:768px){.pcnone{display:none;}}




/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
  width: 100%;
}

/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
#container {
  width: 768px;
  /*コンテナー幅*/
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin: 0 auto;
}
}/* ▲PCメディアクエリ終了▲ */








/*メインコンテンツ
---------------------------------------------------------------------------*/

#main {
  clear: both;
  margin: 0;
}


.fv{
  margin:0 0 -0px 0
}


/*ボタン設定
---------------------------------------------------------------------------*/
.btn_box-01 {
  width: 100%; /* 親要素の幅にフィット */
 text-align: center;
  margin: 0;

 }

 
 .btn_box-01 a img {
     width: 90%; /* ボタン画像のサイズを調整 */
     height: auto; /* 縦横比を維持 */
     animation: pulse 2s infinite; /* 2秒ごとにパルス効果を繰り返す */
     display: block;
     margin: 30px auto 5px;
 }
 
.btn_txt{
     margin: 0px 0 20px 0;
    }

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



 .btn_box-02 {
   width: 100%; /* 親要素の幅にフィット */
      position: relative; /* 子要素を絶対配置するために必要 */
      padding-top: 90.36%; /* アスペクト比を保持 (アスペクト比＝縦÷横)*/
      background-image: url('img/img/spi-02.webp'); /* 背景画像を指定 */
      background-size: contain; /* 背景画像を全体にフィット */
      background-position: center; /* 背景画像を中央に配置 */
      background-repeat: no-repeat; /* 繰り返しを防ぐ */
      margin:30px 0 0px 0;
  }
  
  .btn_box-02 a {
      position: absolute; /* 背景画像の上に重ねるために絶対配置 */
      top: 50%; /* 上下中央に配置 */
      left: 50%; /* 左右中央に配置 */
      transform: translate(-83%, 30%); /* 中央揃え調整 */
  }
  
  .btn_box-02 a img {
      width: 170%; /* ボタン画像のサイズを調整 */
      height: auto; /* 縦横比を維持 */
      margin: 0px 0 0 0;
      animation: pulse 2s infinite; /* 2秒ごとにパルス効果を繰り返す */
  }
  



  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.07);
    }
    100% {
      transform: scale(1);
    }
  }
/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.btn_box-01 {
      width: 100%; /* 親要素の幅にフィット */
      text-align: center;
}

.btn_box-01 a img {
    width: 620px; /* ボタン画像のサイズを調整 */
    height: auto; /* 縦横比を維持 */
    animation: pulse 2s infinite; /* 2秒ごとにパルス効果を繰り返す */
    display: block;
    margin: 60px auto 10px;
}

.btn_txt{
     margin: 0px 0 60px 0;
     font-size:20px;
    }

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




.btn_box-02 {
  width: 100%; /* 親要素の幅にフィット */
     position: relative; /* 子要素を絶対配置するために必要 */
     padding-top: 90.36%; /* アスペクト比を保持 (アスペクト比＝縦÷横)*/
     background-image: url('img/spi-.webp'); /* 背景画像を指定 */
     background-size: contain; /* 背景画像を全体にフィット */
     background-position: center; /* 背景画像を中央に配置 */
     background-repeat: no-repeat; /* 繰り返しを防ぐ */
     margin:40px 0 0px 0;
 }
 
 .btn_box-02 a {
     position: absolute; /* 背景画像の上に重ねるために絶対配置 */
     top: 50%; /* 上下中央に配置 */
     left: 50%; /* 左右中央に配置 */
     transform: translate(-50%, -50%); /* 中央揃え調整 */
 }
 
 .btn_box-02 a img {
     width: 620px; /* ボタン画像のサイズを調整 */
     height: auto; /* 縦横比を維持 */
     margin: 300px 0 0 0;
     animation: pulse 2s infinite; /* 2秒ごとにパルス効果を繰り返す */
 }

}/* ▲PCメディアクエリ終了▲ */





/*選ばれる理由
---------------------------------------------------------------------------*/
.reason {
  position: relative;

}

.reason__bg {
  
  width: 100%;
  display: block;
  
}

.reason__media {
  position: absolute;
  top: 43%;
  right: 0; 
  width: 87vw;
  height: calc(87vw * 467 / 667); /* 元比率を維持 */



/* ===== マスク設定 ===== */

  /* Safari用 */
  -webkit-mask-image: url("img/mask-square.png");
  -webkit-mask-repeat: no-repeat;
 
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;

  /* 標準 */
  mask-image: url("img/mask-square.png");
  mask-repeat: no-repeat;
 
  mask-position: center;
  mask-size: 100% 100%; 

}

.reason__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__label {
  position: absolute;
  top: 43%;
  left: 12%;
  transform: translateX(-50%);
  width: 16vw;

}


/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.reason {
  position: relative;

}

.reason__bg {
  
  width: 100%;
  display: block;
  
}

.reason__media {
  position: absolute;
  top: 43%;
  right: 0; 
  width: 667px;
  height: 467px;



/* ===== マスク設定 ===== */

  /* Safari用 */
  -webkit-mask-image: url("img/mask-square.png");
  -webkit-mask-repeat: no-repeat;
 
  -webkit-mask-position: center;


  /* 標準 */
  mask-image: url("img/mask-square.png");
  mask-repeat: no-repeat;
 
  mask-position: center;


}

.reason__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__label {
  position: absolute;
  top: 43%;
  left: 12%;
  transform: translateX(-50%);
  width: 117px;

}
}




/*限定性
---------------------------------------------------------------------------*/
.limit{

}

.limit-txt{
  font-size:18px;
  background-color: #f2f2f2;
  padding:30px 30px 0 30px;
  font-weight:400 ;
}

/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.limit{

}

.limit-txt{
  font-size:28px;
  background-color: #f2f2f2;
  padding:60px 60px 0 60px;
 font-weight:400 ;
}
}




/*youtbe
---------------------------------------------------------------------------*/
.video-section {
  background-color: #8c7a6b; /* 背景を全面に */
  padding:30px 30px 15px 30px;
  text-align: center;         /* 中央寄せの補助 */
}

.youtube{
margin: 0 auto; 
width: 100%;

}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9; 
  display: block;  
}

.youtube-txt{
background-color: #8c7a6b;
color:#fff;
font-size:14px;
font-weight: 300;
padding:0 0 45px 30px;

}

/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.video-section {
  background-color: #8c7a6b; /* 背景を全面に */
  padding:40px 60px 15px 60px;
  text-align: center;         /* 中央寄せの補助 */
}

.youtube{
margin: 0 auto; 
max-width: 640px;
width: 100%;

}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9; 
  display: block;  
}

.youtube-txt{
background-color: #8c7a6b;
color:#fff;
font-size:16px;
font-weight: 300;
padding:0 0 90px 60px;

}
}


/*他社との比較
---------------------------------------------------------------------------*/
.comparison-box{
  padding:0 5.33vw 45px 5.33vw;
  background-color: #edeae3;
}

.comparison-table{
  padding:30px 0 10px 0
}

table {
  border-collapse: collapse; /* 枠線を統一する */
  width: 100%;
}

td {
  border: 1px solid #6d6d6d;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  font-size: 18px;
  color:#4d4d4d;
}

.white-bg {
  background-color: white;
  font-weight: 400;
}

.pink-bg{
  background-color:#d67685;
}

.blue-bg{
  background-color:#2357b0;
}

.gray-bg{
  background-color:#e7e7e7;
}

.pale-pink-bg{
  background-color:#fbf1f3;
}

.yellow-bg{
  background-color:#fcfbe9;
}

.white-text{
  color: #fff;
}

.brown-text{
  color:#5b4c3e;
}

.font18-text{font-size:16px;}



/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.comparison-box{
  padding:0 60px 0 60px;
  background-color: #edeae3;
 
}

.comparison-table{
  padding:60px 0 90px 0;
  width:648px;
  margin:0 auto;
}

table {
  border-collapse: collapse; /* 枠線を統一する */
  width: 100%;
}

td {
  border: 1px solid #3d3d3d;
  padding: 20px 15px 20px 15px;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  font-size: 20px;
  color:#5d5d5d;
}

.white-bg {
  background-color: white;
  font-weight: 500;
}

.pink-bg{
  background-color:#d67685;
}

.brown-bg{
  background-color:#5b4c3e;
}

.gray-bg{
  background-color:#e7e7e7;
}

.pale-pink-bg{
  background-color:#fbf1f3;
}

.white-text{
  color: #fff;
}

.brown-text{
  color:#5b4c3e;
}

.font18-text{font-size:18px;}


}
/* ▲PCメディアクエリ終了▲ */




/*------------------------------ よくあるご質問（開閉式） ------------------------------*/
.faq{
padding:0 30px 25px 30px;
}

.faq-box{
  border: 1px solid #5b4c3e;
  border-radius:10px ;
  padding:20px 20px 20px 20px;
  margin:0 0 20px 0;
 
}

.Q-box{
   display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:-o-flex;
  display:flex;
  -webkit-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:space-between;
  

}

.Q{
font-size:24px;
  font-weight: 700;
  width:5%;
  margin:-6px 0 0 0;
  color:#d67685;
}

.Q-txt{
  font-size:18px;
  font-weight: 500;
width:90%;
padding:0 20px 0 0;
}

.A-box{
 display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:-o-flex;
  display:flex;
  -webkit-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:space-between;
  padding:15px 0 0 0;
  border-top:2px dashed #8c7a6b;
  margin:10px 0 0 0;
}

.A{
font-size:24px;
  font-weight: 700;
  width:5%;
  margin:-6px 0 0 0;
}

.A-txt{
  font-size:18px;
  font-weight: 300;
width:90%;
}

/* デフォルト三角を消す */
summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

/* ＋マーク */
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  font-weight: 400;
  transition: 0.3s;
}

/* 開いたら − に変える */
details[open] summary::after {
  content: "−";
}


/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.faq{
padding:0 60px 50px 60px;
}

.faq-box{
  border: 1px solid #5b4c3e;
  border-radius:10px ;
  padding:30px 40px 30px 40px;
  margin:0 0 30px 0;
 
}

.Q-box{
   display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:-o-flex;
  display:flex;
  -webkit-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:space-between;
  


}

.Q{
font-size:28px;
  font-weight: 700;
  width:5%;
  margin:-4px 0 0 0;
  color:#d67685;
}

.Q-txt{
  font-size:24px;
  font-weight: 500;
width:93%;
}

.A-box{
 display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:-o-flex;
  display:flex;
  -webkit-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:space-between;
  padding:15px 0 0 0;
  border-top:2px dashed #8c7a6b;
    margin:15px 0 0 0;
}

.A{
font-size:28px;
  font-weight: 700;
  width:5%;
  margin:-2px 0 0 0;
  color:#8c7a6b;
  
}

.A-txt{
  font-size:24px;
  font-weight: 300;
width:93%;
}

/* デフォルト三角を消す */
summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

/* ＋マーク */
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  font-weight: 400;
  transition: 0.3s;
}

/* 開いたら − に変える */
details[open] summary::after {
  content: "−";
}
}




/*fixed ボタン設定
---------------------------------------------------------------------------*/
.floating {
  display:block;
  width:100%;
  position:fixed;
  left:0;
  bottom:0;
  z-index:9999;
  text-align:center;
  margin:0;
  padding:5px 0 0px 0 ;
  background:rgba(0,0,0,0.3);
  }
  

  .fixed-btn_box{
    width:100%;
    margin:6px auto 0px auto;
    padding:0;
  }

  .fixed-btn_box img{
    width:93%;
    margin:0px auto 0px auto;
    padding:0;
    transition:0.3s ease-in-out;
    animation: pulse 2s infinite; /* 2秒ごとにパルス効果を繰り返す */
  }

/* ▼PCメディアクエリ */
@media screen and (min-width:769px){
.floating {
  display:block;
  width:100%;
  position:fixed;
  left:0;
  bottom:0;
  z-index:9999;
  text-align:center;
  margin:0;
  padding:15px 0 10px 0 ;
  background:rgba(0,0,0,0.3);
  }
  
  
  
  .fixed-btn_box{
    width:768px;
    margin:0px auto 0px auto;
    padding:0;
  }

  .fixed-btn_box img{
    width:648px;
    margin:0px auto 0px auto;
    padding:0;
    transition:0.3s ease-in-out;
    animation: pulse 2s infinite; /* 2秒ごとにパルス効果を繰り返す */
  }
}












/*フッター設定
---------------------------------------------------------------------------*/
#footer {
  width: 100%;
  min-width: 100%;
  font-size:75%;
  margin:0px auto 0;
  padding:20px 20px 20px 20px;
  background-color:#5B4C3E;
  color: #fff;
  text-align: center;
}

#footer a {
  color: #fff;
  margin: 10px 0;
}

#footer p {
  margin: 10px 0;
}

/* ▼TLメディアクエリ */
@media screen and (min-width:768px){
  #footer {
    width: 100%;
    margin: 0px auto 0;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 5%;
    color: #fff;
    position: relative;
    background-color: #5B4C3E;
    font-size: 100%;
  }
  
  #footer a {
    color: #fff;
    margin: 10px 0;
  }
  
  #footer p {
    margin: 10px 0;
  }
}
/* ▼PCメディアクエリ */
@media screen and (min-width:769px){

#footer {
  width: 100%;
  margin: 0px auto 0;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
  color: #fff;
  position: relative;
  background-color: #5B4C3E;
  font-size: 100%;
}

#footer a {
  color: #fff;
  margin: 10px 0;
}

#footer p {
  margin: 10px 0;
}
}/* ▲PCメディアクエリ終了▲ */





/*---------- 特商法・プライバシーポリシー----------*/
table.info{
  width:100%;
  border-collapse:separate;
  margin:20px 0;
  font-family:  'Noto Sans JP';
  }
  table.info th{
  padding:10px 0;
  font-size:90%;
  line-height:150%;
  text-align:left; /* thのデフォルトはセンター揃えのため */
  border-bottom:solid 1px #666;
  display:block;
  font-family:  'Noto Sans JP';
  }
  table.info td{
  padding:10px 0 20px 0;
  font-size:90%;
  line-height:150%;
  display:block;
  font-family:  'Noto Sans JP';
  }

 /* ▼PCメディアクエリ */
 @media screen and (min-width:769px){

  table.info{
  width:100%;
  border-collapse:separate;
  margin:20px 0;
  font-family:  'Noto Sans JP';
  }
  table.info th{
  width:180px;
  padding:10px 0;
  font-size:14px;
  line-height:150%;
  text-align:left; /* thのデフォルトはセンター揃えのため */
  letter-spacing:1px;
  border-bottom:solid 1px #666;
  display:table-cell;
  font-family:  'Noto Sans JP';
  }
  table.info td{
  padding:10px;
  font-size:14px;
  line-height:150%;
  letter-spacing:1px;
  border-bottom:dotted 1px #ccc;
  display:table-cell;
  font-family:  'Noto Sans JP';
  }
}/* ▲PCメディアクエリ終了▲ */





/*------------------------------ ページ一番上へ ------------------------------*/

#pagetop {
  position:fixed;
  bottom:5%; /* 下からの位置／今回はフローティングがあるため高めに設定。通常は20～30 */
  right:20px;
  }
  #pagetop i {
  padding-top:6px
  }
  #pagetop a {
  display:block;
  z-index:9999;
  padding:3px 4px 3px 4px;
  border-radius:50%;
  width:45px;
  height:45px;
  background-color:#ccc;
  color:#fff;
  text-decoration:none;
  text-align:center;
  font-size:20px;
  }
  #pagetop a:hover {
  text-decoration:none;
  opacity:0.7;
  }
  

 /* ▼TLメディアクエリ */
 @media screen and (min-width:768px){
  #pagetop {
    position:fixed;
    bottom:5%; /* 下からの位置／今回はフローティングがあるため高めに設定。通常は20～30 */
    right:20px;
    }
    #pagetop i {
    padding-top:6px
    }
    #pagetop a {
    display:block;
    z-index:9999;
    padding:10px 4px 3px 4px;/* 内側の余白 */
    border-radius:50%;       /* 角丸度（丸さ） */
    width:60px;              /* 横幅 */
    height:60px;             /* 高さ */
    background-color:#ccc;
    color:#fff;
    text-decoration:none;
    text-align:center;
    font-size:20px;
    }
    #pagetop a:hover {
    text-decoration:none;
    opacity:0.7;
    }
  }


  /* ▼PCメディアクエリ */
  @media screen and (min-width:1024px){
  #pagetop {
  position:fixed;
  bottom:20px; /* 下からの位置／今回はフローティングがあるため高めに設定。通常は20～30 */
  right:20px;
  }
  #pagetop i {
  padding-top:6px
  }
  #pagetop a {
  display:block;
  z-index:9999;
  padding:7px 4px 8px 4px;/* 内側の余白 */
  border-radius:50%;   /* 角丸度（丸さ） */
  width:60px;             /* 横幅 */
  height:60px;            /* 高さ */
  background-color:#ccc;
  color:#fff;
  text-decoration:none;
  text-align:center;
  font-size:23px;
  }
  #pagetop a:hover {
  text-decoration:none;
  opacity:0.7;
  }
  } /* ▲PCメディアクエリ終了▲ */





