@charset "utf-8";

/* -----------------------------
   Base
----------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-size: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}

a {
  color: #2236cf;
  text-decoration: underline;
}

a:hover {
  color: #d90909;
}

/* -----------------------------
   Layout
----------------------------- */

#wrap {
  width: 100%;
}

#container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.policy-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* -----------------------------
   Table（縦積みレイアウト）
----------------------------- */

.tb01 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.tb01,
.tb01 tr,
.tb01 td {
  display: block;
  width: 100%;
}

.tb01 td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.tb01 .title {
  background: #f5f5f5;
  font-weight: bold;
  margin-top: 30px;
}

/* -----------------------------
   Footer
----------------------------- */

.policy-footer {
  margin-bottom: 40px;
}

.policy-date {
  text-align: right;
}

#copyright {
  text-align: center;
  font-size: 14px;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

/* =============================
   Mobile Optimization
============================= */

@media screen and (max-width: 768px) {

  #container {
    padding: 30px 20px;
  }

  .policy-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  body {
    font-size: 14px;
    line-height: 1.9;
  }

  .tb01,
  .tb01 tr,
  .tb01 td {
    display: block;
    width: 100%;
  }

  .tb01 td {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
  }

  .tb01 .title {
    background: #f0f0f0;
    margin-top: 20px;
  }

  #copyright {
    font-size: 12px;
  }
}
