@charset "UTF-8";

/* -------------------------------------------
section　共通
---------------------------------------------*/
section .inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 16px;
  /*ボタンエリア*/
}

@media screen and (max-width: 767px) {
  section .inner {
    max-width: 100%;
    padding: 0 3%;
    box-sizing: border-box;
  }
}

section .inner h3 {
  position: relative;
  font-size: 40px;
  color: #009aff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  section .inner h3 {
    font-size: 26px;
  }
}

section .inner h3:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #009aff;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

section .inner .btn-area {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  section .inner .btn-area {
    max-width: 100%;
  }
}

section .inner .btn-area ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  section .inner .btn-area ul {
    display: block;
  }
}

section .inner .btn-area ul li {
  width: 49%;
  height: auto;
}

@media screen and (max-width: 767px) {
  section .inner .btn-area ul li {
    width: 100%;
  }
}

section .inner .btn-area ul li .btn-area-ttl {
  text-align: center;
  padding: 20px;
  font-size: 26px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  section .inner .btn-area ul li .btn-area-ttl {
    font-size: 20px;
  }
}

section .inner .btn-area ul li .btn-area-box {
  width: 100%;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  section .inner .btn-area ul li .btn-area-box {
    margin-top: 40px;
  }
}

section .inner .btn-area ul li .btn-area-box img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  section .inner .btn-area ul .btn-area-shinki {
    margin-bottom: 8%;
  }
}

section .inner .btn-area ul .btn-area-shinki .btn-area-ttl {
  position: relative;
  color: #00a928;
  border: 4px solid #00a928;
}

section .inner .btn-area ul .btn-area-shinki .btn-area-ttl:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0 auto;
  border: 10px solid transparent;
  border-top: 11px solid #00a928;
  display: inline-table;
}

section .inner .btn-area ul .btn-area-shinki .btn-area-box {
  display: flex;
  justify-content: space-between;
}

section .inner .btn-area ul .btn-area-shinki .btn-area-box .btn1, section .inner .btn-area ul .btn-area-shinki .btn-area-box .btn2 {
  width: 49%;
  height: auto;
}

section .inner .btn-area ul .btn-area-shinki .btn-area-box .btn1 img, section .inner .btn-area ul .btn-area-shinki .btn-area-box .btn2 img {
  width: 100%;
  height: auto;
  min-height: 125px;
}

@media screen and (max-width: 767px) {
  section .inner .btn-area ul .btn-area-shinki .btn-area-box .btn1 img, section .inner .btn-area ul .btn-area-shinki .btn-area-box .btn2 img {
    min-height: auto;
  }
}

section .inner .btn-area ul .btn-area-kanyuchu .btn-area-ttl {
  position: relative;
  color: #009aff;
  border: 4px solid #009aff;
}

section .inner .btn-area ul .btn-area-kanyuchu .btn-area-ttl:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0 auto;
  border: 10px solid transparent;
  border-top: 11px solid #009aff;
  display: inline-table;
}

/* -------------------------------------------
コンテンツ
---------------------------------------------*/
.contents {
  width: 100%;
  /* テーブルのスタイル */
  /* スマートフォン対応 */
}

.contents .contents__wrap {
  max-width: 1200px;
  padding: 100px 20px;
  margin: 0 auto;
  background: #fff;
}

.contents h1 {
  font-size: 1.8em;
  text-align: center;
  margin: 0 0 20px 0;
  color: #444;
}

.contents h2 {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 20px;
  color: #cb1a1a;
  width: 100% !important;
}

.contents table {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contents table td {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.contents table td:first-child {
  font-weight: bold;
  background-color: #f7f7f7;
  width: 30%;
}

.contents table td:last-child ul {
  padding-left: 20px;
  margin: 0;
  list-style: disc;
}

.contents table td p {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .contents .contents__wrap {
    padding: 40px 20px;
  }
  .contents table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .contents table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .contents table td:first-child {
    font-weight: normal;
  }
  .contents table td:last-child ul {
    list-style: none;
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .contents h1 {
    font-size: 1.5em;
  }
  .contents h2 {
    font-size: 1em;
  }
  .contents table td {
    padding: 5px;
  }
}
