@charset "UTF-8";
body {
  background-image: url(../images/body-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}


.body-inner {
  max-width: 1440px;
  box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 750px) {
  .body-inner {
    max-width: 100%;
    box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    background: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}

img {
  width: 100%;
  max-width: none; /* 親要素を超えてもいい */
  height: auto; /* アスペクト比を維持 */
  display: block; /* 余白を削除 */
  aspect-ratio: auto; /* 画像の元の比率を維持 */
  margin-top: -1px; /*--隙間調整--*/
}

/* コンテンツの横幅 */
/* ============================================ */
.contents-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 750px) {
  .contents-inner {
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* コンテンツの横幅 ここまで */
/* ============================================ */

/* CTAボタン */
/* ============================================ */

.cta-wrapper {
  position: relative;
}

.cta-area {
  position: absolute;
  bottom: 8%;
  margin: auto;
  left: 0;
  right: 0;
  width: 50%;
}

@media screen and (max-width: 750px) {
  .cta-area {
    bottom: 7%;
    width: 85%;
  }
} 

.btn_animate01 {
  margin: 0 auto;
  animation: fuwafuwa 1s ease 0s infinite alternate;
  transform-origin:center;
  cursor: pointer;
  display: block;
  }
  @keyframes fuwafuwa {
  from {transform: scale(0.9,0.9);}
  to {transform: scale(1,1);}
  }

/* CTAボタン ここまで */
/* ============================================ */

.hikaku_sp {
  display: none;
}

.hikaku_pc {
  display: block;
}

@media screen and (max-width: 750px) {
  .hikaku_sp {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.table {
  width: 100vw;
  height: auto;
  overflow-x: auto;
  white-space: nowrap;
}

.table--scroll {
  width: 250%;
}

.table--scroll img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hikaku_pc {
  display: none;
}
}

.privacy_wrap {
  margin: 0 auto 0;
  padding: 0 10%;
  top: 0;
  color: #3E3A39;
  font-size: 27px;
}

@media screen and (max-width: 750px) {
  .privacy_wrap {
    font-size: 4.21875vw;
    padding: 0 5.4%;
  }
}

@media screen and (max-width: 750px) {
  .privacy_wrap h1 {
    font-size: 7.65625vw;
  }
}

.privacy_wrap h1 {
  color: #333;
  font-size: 28px;
  text-align: center;
  margin: 0;
  padding: 12% 0 3.2%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .privacy_wrap .top {
      font-size: 3.4375vw;
      line-height: 1.8rem;
  }
}

.privacy_wrap .top {
  text-align: justify;
  font-size: 16px;
  line-height: 2rem;
  font-weight: 300;
}

@media screen and (max-width: 750px) {
  .privacy_wrap h2 {
      font-size: 3.59375vw;
  }
}

.privacy_wrap h2 {
  font-size: 20px;
  text-align: left;
  margin: 0 0 -1.6% 0;
  padding: 2% 0 2.2%;
  border-bottom: solid 1px #333;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  .privacy_wrap p {
    font-size: 3.28125vw;
    line-height: 1.8rem;
  }
}

.privacy_wrap p {
  font-size: 16px;
  line-height: 2rem;
  margin: 4% 0; 
  font-weight: 300;
}


/* footer */
/* ============================================ */
footer {
  display: block;
  padding: 30px 0;
  background: #fff;
}
ul {
  list-style: none;
}
.footer_nav {
  text-align: center;
  padding: 10px 0;
}
.footer_nav li {
  display: inline-block;
  margin: 0 5px 0 0;
  border-right: #333 solid thin;
  font-size: 13px;
}
.footer_nav li:nth-child(2) {
  border-right: none;
}
.footer_nav li a {
  text-decoration: none;
  color: #333;
}
.footer_nav li:last-child {
  border: none;
}
footer .copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  padding-bottom: 10px;
  color: #333;
}
/* footer ここまで */
/* ============================================ */