@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 750px) {
  body {
    background: #eee;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 330px) {
  body {
    font-size: 1.3rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease-in-out 0s;
}
a:hover {
  opacity: 0.8;
}

.red {
  color: #ff0000;
  font-weight: bold;
}

.yellow {
  color: #ffff00;
}

.line_yellow {
  background: linear-gradient(transparent 65%, #fff000 65%);
  font-weight: bold;
}

.suptext {
  color: #646464;
  font-size: min(1rem, 0.7em);
  font-weight: normal;
  vertical-align: top;
}

.small {
  color: #646464;
  font-size: 0.7em;
  font-weight: normal;
  text-align: left;
}

.small_w {
  width: 94%;
  margin: 0 auto;
  padding-bottom: 1em;
}
@media screen and (min-width: 750px) {
  .small_w {
    width: 92%;
    white-space: nowrap;
  }
}

@media screen and (min-width: 750px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .sp_none {
    display: none;
  }
}
.btn a {
  position: relative;
  overflow: hidden;
  display: block;
  background: rgb(255, 40, 40);
  background: linear-gradient(180deg, rgb(255, 40, 40) 0%, rgb(223, 42, 42) 100%);
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 6px 0 #b10a0a;
}
.btn a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 100%;
  background-color: #FFF;
  top: -180px;
  left: 0;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
}

.btn.arrow a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-radius: 1px;
  top: 48%;
  right: 8%;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}

@keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
header {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: auto;
}
header .top_pr {
  display: inline-block;
  position: absolute;
  background: #fff;
  border: 1px solid #333;
  font-size: 0.9em;
  padding: 0 0.2em 0.1em;
  border-radius: 4px;
  right: 10px;
  bottom: 5px;
}
header .calendar {
  position: absolute;
  color: #6e351a;
  font-size: clamp(0.8rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  top: 7%;
  left: 2.6%;
  transform: rotate(-10deg);
}
header .calendar span {
  font-size: 0.7em;
}

section {
  width: 100%;
  max-width: 750px;
  background: #fff;
  margin: auto;
}

section h1 {
  background: linear-gradient(180deg, rgb(45, 86, 186) 0%, rgb(25, 48, 130) 100%);
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 0.8em;
  padding: 0.4em 0 0.5em;
}

section h2 {
  background: #2d56ba;
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 1em;
  padding: 0.6em 0 0.5em;
}

.section1 {
  padding-bottom: 1.2em;
}

h3.top_title {
  position: relative;
  width: 94%;
  color: #4d71cc;
  font-size: 1.2em;
  border-top: double 4px #4d71cc;
  border-bottom: double 4px #4d71cc;
  margin: 0 auto 0.8em;
  padding: 0.4em 0;
}
h3.top_title::before, h3.top_title::after {
  content: "";
  position: absolute;
  background: 0/contain no-repeat;
}
h3.top_title::before {
  width: 1.4em;
  height: 1.4em;
  background-image: url(../img/title_icon01.webp);
  top: -12px;
  left: 2%;
}
h3.top_title::after {
  width: 1.6em;
  height: 1.6em;
  background-image: url(../img/title_icon02.webp);
  bottom: -12px;
  right: 5%;
}
@media screen and (min-width: 750px) {
  h3.top_title {
    width: 90%;
  }
}

.box_flex {
  display: flex;
  justify-content: space-between;
  background: #ebf0ff;
  padding: 0.8em 0.6em;
}
.box_flex .box {
  display: flex;
  flex-direction: column;
  width: 32%;
  background: #fff;
  border: #4d71cc 1px solid;
  padding-bottom: 0.4em;
}
.box_flex .box .name {
  background: #4d71cc;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  padding: 0.2em 0 0.3em;
}
.box_flex .box .images_area {
  display: flex;
  align-items: flex-end;
  width: 24px;
  height: 24px;
  margin: 0.4em auto;
}
.box_flex .box .banner {
  width: 90%;
}
.box_flex .box .txt {
  width: 94%;
  font-size: 0.8em;
  text-align: left;
  margin: 0.4em auto 0.6em;
  flex-grow: 1;
}
.box_flex .box .btn a {
  width: 90%;
  font-size: 0.8em;
  margin: 0 auto 1em;
  padding: 0.3em 0;
  border-radius: 8px;
}
.box_flex .box:first-of-type .images_area {
  width: 28px;
  height: 23px;
}
@media screen and (min-width: 750px) {
  .box_flex {
    padding-inline: 5%;
  }
}

.section2 .title {
  position: relative;
  display: inline-block;
  background: #f0f6ff;
  font-size: 1.15em;
  font-weight: bold;
  border: 1px solid #8c8c8c;
  border-radius: 6px;
  margin: 0 auto 1.4em;
  padding: 0.6em 0.8em;
}
.section2 .title::before, .section2 .title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section2 .title::before {
  border-top: 15px solid #8c8c8c;
  top: 100%;
}
.section2 .title::after {
  border-top: 15px solid #f0f6ff;
  top: 98%;
}
.section2 .title .inner {
  position: relative;
  display: inline-block;
}
.section2 .title .inner::before {
  content: "";
  position: absolute;
  width: 1.8em;
  height: 1.8em;
  background: url(../img/title_icon1.svg) 0/contain no-repeat;
  top: 75%;
  left: 0;
  transform: translateY(-50%) rotate(-10deg);
}
.section2 .title .inner::after {
  content: "";
  position: absolute;
  width: 1.4em;
  height: 1.4em;
  background: url(../img/title_icon2.svg) 0/contain no-repeat;
  top: 80%;
  right: 2%;
  transform: translateY(-50%);
}
.section2 .title .red {
  font-size: 1.2em;
}

.top_table {
  margin-bottom: 0.2em;
}
.top_table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto 0.1em;
}
.top_table table th, .top_table table td {
  white-space: nowrap;
  font-size: 0.8em;
  border: #bbbbbb solid 1px;
}
.top_table table th:first-of-type, .top_table table td:first-of-type {
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 0;
}
.top_table table th:first-of-type::after, .top_table table td:first-of-type::after {
  content: "";
  border-right: 1px solid #bbbbbb;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
.top_table table th:nth-of-type(2), .top_table table td:nth-of-type(2) {
  border-left: 0;
}
.top_table table th {
  background: #4d71cc;
  color: #fff;
  padding: 0.6em;
}
.top_table table td {
  background: #fff;
  padding: 0.4em;
}
.top_table table tr:nth-child(2) td {
  background: #f7f4d4;
  font-weight: bold;
}
.top_table table tr:nth-child(2) td .pr_icon {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.4em;
  padding: 0.2em 0.4em;
}
.top_table table td .icon {
  width: 20px;
  margin: 0.2em 0 0.3em;
}
.top_table table td .rank_icon {
  width: 26px;
  margin-bottom: 0.4em;
}
.top_table table td .banner {
  width: 92%;
  margin: 0 auto 0.2em;
}
.top_table table td .text_link {
  color: #2d56ba;
  font-weight: bold;
  padding: 0 0.6em;
}
.top_table table td .btn a {
  width: 98%;
  font-size: 1.1em;
  color: #fff;
  border-radius: 10px;
  margin: 0.3em auto 0.6em;
  padding: 0.4em 0.8em;
}

.small_box {
  overflow: auto;
  margin-bottom: 1.4em;
}
.small_box .small {
  white-space: nowrap;
}
@media screen and (min-width: 750px) {
  .small_box {
    margin-bottom: 0;
    padding-bottom: 1.4em;
  }
  .small_box .small {
    width: 98%;
    margin-inline: auto;
    white-space: normal;
  }
}

h3.point_title {
  position: relative;
  overflow: hidden;
  width: 96%;
  font-size: 1.1em;
  border: 2px solid #2d56ba;
  margin: 0 auto 1em;
  padding: 0.5em;
}
h3.point_title .sub {
  display: inline-block;
  background: #2d56ba;
  color: #fff;
  font-size: 0.9em;
  line-height: 1.3;
  border-radius: 999px;
  margin-bottom: 0.2em;
  padding: 0.4em 0.8em;
}
h3.point_title::before, h3.point_title::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: #2d56ba;
  transform: rotate(45deg);
}
h3.point_title::before {
  left: -15px;
  top: -15px;
}
h3.point_title::after {
  right: -15px;
  bottom: -15px;
}
@media screen and (min-width: 750px) {
  h3.point_title {
    width: 90%;
  }
}

.point_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 94%;
  margin: 0 auto;
  padding-bottom: 1em;
}
.point_wrap .point_box {
  width: 48%;
  background: #fff6e7;
  border-radius: 6px;
  margin-bottom: 0.6em;
  padding: 0.6em 0;
}
.point_wrap .title {
  font-size: 0.94em;
  font-weight: bold;
  margin-bottom: 0.6em;
}
.point_wrap img {
  width: 70%;
}
@media screen and (min-width: 750px) {
  .point_wrap {
    width: 90%;
  }
  .point_wrap .point_box {
    width: 24%;
  }
  .point_wrap .title {
    font-size: 0.85em;
  }
}

.matrix {
  overflow: hidden;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 9px, rgb(228, 228, 228) 9px, rgb(228, 228, 228) 10px), repeating-linear-gradient(transparent, transparent 9px, rgb(228, 228, 228) 9px, rgb(228, 228, 228) 10px);
  background-color: #fff;
  background-size: auto auto;
  padding: 1em 0.6em 0;
}
.matrix h3 {
  background: #fff;
  color: #4d71cc;
  font-size: 1.2em;
  border: #4d71cc 2px solid;
  border-width: 2px 4px 4px 2px;
  margin-bottom: 0.6em;
  padding: 0.2em 0 0.3em;
}
.matrix .matrix_inner {
  position: relative;
  width: 100%;
  background: url(../img/matrix.webp) top/100% auto no-repeat;
  margin: 0 auto;
  padding-top: 100%;
}
.matrix .circle {
  position: absolute;
  width: 37%;
  max-width: 225px;
  height: 21%;
  max-height: 125px;
  background: rgba(255, 246, 123, 0.8);
  border-radius: 50%;
  z-index: 1;
  top: 8%;
  left: 64%;
}
@media screen and (min-width: 750px) {
  .matrix h3 {
    width: 90%;
    margin: 0 auto;
  }
  .matrix .matrix_inner {
    width: 80%;
    padding-top: 80%;
  }
  .matrix .circle {
    top: 9%;
    height: 14%;
  }
}

.matrix_inner .box {
  position: absolute;
  width: 32%;
  max-width: 170px;
  background: #fff;
  line-height: 1;
  border-color: #333;
  border-style: solid;
  border-width: 1px 2px 3px 1px;
  z-index: 2;
}
.matrix_inner .box span {
  display: inline-block;
  color: #4d71cc;
  font-size: 0.8em;
  font-weight: bold;
}
.matrix_inner .box:nth-child(1) {
  padding: 0.2em 0.4em 0;
  border-color: #4d71cc;
  top: 11%;
  left: 67%;
}
.matrix_inner .box:nth-child(2) {
  width: 36%;
  border-color: #4d71cc;
  padding: 0.3em 0;
  top: 11%;
  left: 28%;
}
.matrix_inner .box:nth-child(3) {
  padding: 0 0.3em;
  top: 30%;
  left: 67%;
}
.matrix_inner .box:nth-child(4) {
  padding: 0 0.2em;
  top: 44%;
  left: 67%;
}
.matrix_inner .box:nth-child(5) {
  padding: 0 0.3em;
  top: 36%;
  left: 19%;
}
.matrix_inner .box:nth-child(6) {
  padding: 0 0.3em;
  top: 59%;
  left: 55%;
}
.matrix_inner .box:nth-child(7) {
  padding: 0 0.2em;
  top: 49%;
  left: 14%;
}
.matrix_inner .box:nth-child(8) {
  padding: 0 0.3em;
  top: 63%;
  left: 12%;
}
.matrix_inner .box:nth-child(9) {
  padding: 0.1em 0.4em 0;
  top: 76%;
  left: 37%;
}

.point_type {
  padding-bottom: 1em;
}
.point_type h2 {
  font-size: 1.2em;
  padding-bottom: 0.4em;
}
.point_type h2 span {
  display: inline-block;
  background: #4d71cc;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 0.1em;
  padding: 0.1em 0.6em 0.2em;
}

.type_box {
  background: #ebf0ff;
  padding: 1.2em 0.6em 0.1em;
}
.type_box input {
  display: none;
}
.type_box label {
  display: block;
  position: relative;
  width: 100%;
  background: #4d71cc;
  color: #fff;
  font-size: 1.1em;
  text-align: left;
  font-weight: bold;
  margin: auto;
  padding: 0.3em 0.6em 0.4em;
}
.type_box label .yellow {
  font-size: 1.1em;
  text-decoration: underline;
}
.type_box label::before, .type_box label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.type_box label::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  right: 9px;
}
.type_box label::after {
  width: 12px;
  height: 12px;
  background: url(../img/type_icon.svg) 0/contain no-repeat;
  right: 13px;
}
.type_box input:checked + label::after {
  background-image: url(../img/type_icon2.svg);
}
.type_box input:checked + label + .acd-content {
  height: auto;
  opacity: 1;
  padding: 0.6em 0;
  transition: padding 0.3s;
}
@media screen and (min-width: 750px) {
  .type_box label {
    width: 90%;
    margin: 0 auto;
  }
}

.acd-content {
  height: 0;
  overflow: hidden;
  background: #fff;
  border: #4d71cc 2px solid;
  margin-bottom: 1em;
  padding: 0;
  opacity: 0;
  transition: padding 0.3s;
}
.acd-content .acd_name {
  font-size: 1.4em;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 0.4em;
}
.acd-content .acd_img {
  width: 90%;
  max-width: 300px;
  margin: 0 auto 0.6em;
}
.acd-content .acd_txt {
  width: 94%;
  text-align: left;
  margin: 0 auto;
}
.acd-content .btn a {
  width: 90%;
  font-size: 1.1em;
  border-radius: 10px;
  margin: 0.8em auto;
  padding: 0.5em 0 0.6em;
}
@media screen and (min-width: 750px) {
  .acd-content {
    width: 90%;
    margin-inline: auto;
  }
  .acd-content .acd_txt {
    width: 90%;
  }
}

.pickup {
  width: 94%;
  background: #fff;
  border: 2px solid #b80000;
  border-radius: 10px;
  margin: 0 auto 0.4em;
}
.pickup .title {
  display: flex;
  margin: 0.6em 1em;
}
.pickup .title .icon {
  width: 18%;
  max-width: 72px;
  margin-right: 0.6em;
}
.pickup .title .right {
  font-weight: bold;
  text-align: left;
  margin: 0;
}
.pickup .title .right a {
  color: #1379ff;
  font-size: 1.4em;
}
@media screen and (min-width: 750px) {
  .pickup {
    width: 90%;
  }
}

.pickup .flex {
  width: 94%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 1em auto 0.6em;
}
.pickup .flex .banner {
  width: 50%;
}
.pickup .flex table {
  width: 48%;
  border-collapse: collapse;
  border-spacing: 0;
}
.pickup .flex table th, .pickup .flex table td {
  font-size: 0.8em;
  padding: 0.4em;
}
.pickup .flex table th {
  background: #b80000;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.pickup .flex table td {
  font-weight: bold;
  border: #b80000 1px solid;
}
.pickup .flex table tr:first-child th {
  border-top: #b80000 1px solid;
}
.pickup .flex table tr:last-child th {
  border-bottom: #b80000 1px solid;
}
@media screen and (min-width: 750px) {
  .pickup .flex {
    flex-direction: row-reverse;
    align-items: stretch;
  }
  .pickup .flex .banner {
    width: 100%;
  }
  .pickup .flex table {
    width: 38%;
    margin: 1.6em 0 0.6em;
  }
}

.pickup_list {
  position: relative;
  width: 100%;
  border-top: #acacac 1px solid;
  border-bottom: #acacac 1px solid;
  margin: 1.6em 0 0.6em;
}
.pickup_list .list_title {
  position: absolute;
  white-space: nowrap;
  background: #fff;
  font-size: 0.9em;
  padding: 0 0.6em 0.1em 1.3em;
  border: #acacac 1px solid;
  border-radius: 10px;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
}
.pickup_list .list_title::before {
  content: "";
  position: absolute;
  width: 1.1em;
  height: 1.1em;
  background: url(../img/light.svg) 0/contain no-repeat;
  top: 50%;
  left: 0.4em;
  transform: translateY(-50%);
}
.pickup_list ul {
  list-style-type: none;
  margin: 1em 0.5em 0.6em;
}
.pickup_list ul li {
  background: url(../img/check.svg) left 6px/auto 15px no-repeat;
  font-weight: bold;
  text-align: left;
  padding: 0.2em 0 0.2em 1.6em;
}
@media screen and (min-width: 750px) {
  .pickup_list {
    width: 58%;
  }
}

.pick_txt {
  width: 94%;
  text-align: left;
  border: #acacac 1px solid;
  border-radius: 10px;
  margin: 0.6em auto 0.8em;
  padding: 0.6em;
}

.pickup .campaign {
  width: 94%;
  position: relative;
  background: #f8dede;
  border-radius: 8px;
  margin: 1.8em auto 1em;
  padding: 2.6em 0.8em 0.8em;
}
.pickup .campaign .cp_head {
  position: absolute;
  width: 70%;
  top: -10px;
  background: #b80000;
  clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin: auto;
  padding: 0.5em 0;
  left: 0;
  right: 0;
}
.pickup .campaign .cp_head::before, .pickup .campaign .cp_head::after {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 1px dashed #fff;
  left: 0;
}
.pickup .campaign .cp_head::before {
  top: 4px;
}
.pickup .campaign .cp_head::after {
  bottom: 4px;
}
.pickup .campaign .txt {
  font-weight: bold;
  margin-bottom: 0.4em;
}

.btn .cta_txt {
  color: #ff0000;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.4em;
}
.btn a {
  width: 94%;
  font-size: 1.3em;
  border-radius: 8px;
  margin: 0 auto 1.6em;
  padding: 0.6em 0;
}
.btn a img {
  width: 70%;
  max-width: 250px;
  margin-bottom: 0.2em;
}

.cta_line {
  position: relative;
  display: inline-block;
}
.cta_line::before, .cta_line::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 94%;
  background: #ff0000;
  bottom: 0;
}
.cta_line::before {
  transform: rotate(-34deg);
  left: -1.2em;
}
.cta_line::after {
  transform: rotate(34deg);
  right: -1.2em;
}

.ranking h2 .bg_w {
  display: inline-block;
  background: #fff;
  color: #2d56ba;
  font-size: 0.9em;
  border-radius: 10px;
  margin-bottom: 0.2em;
  padding: 0.1em 0.6em 0.2em;
}

.rank_box {
  width: 96%;
  overflow: hidden;
  border: #2d56ba 1px solid;
  border-radius: 5px;
  margin: 1.4em auto 0.2em;
}
.rank_box:last-child {
  margin-bottom: 1.4em;
}
.rank_box .box_head {
  display: flex;
  align-items: center;
  border-bottom: #2d56ba 1px solid;
  margin: 0.4em 0.6em;
  padding: 0 0.4em 0.4em;
}
.rank_box .box_head .icon {
  width: 30px;
  margin-right: 0.6em;
}
.rank_box .box_head .name {
  color: #2d56ba;
  font-size: 1.4em;
  font-weight: bold;
}
.rank_box .title {
  color: #ff0000;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.6em;
}
.rank_box .small {
  width: 94%;
  padding: 0;
}
@media screen and (min-width: 750px) {
  .rank_box {
    width: 90%;
  }
  .rank_box .small {
    width: 90%;
  }
}

.rank_flex {
  width: 94%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 1em;
}
.rank_flex .banner {
  width: 50%;
}
@media screen and (min-width: 750px) {
  .rank_flex {
    width: 90%;
  }
}

.rank_box table {
  width: 48%;
  border-collapse: collapse;
  border-spacing: 0;
}
.rank_box table th, .rank_box table td {
  font-size: 0.8em;
  border: 1px #666666 solid;
  padding: 0.4em;
}
.rank_box table th {
  background: #4d71cc;
  color: #fff;
  border-bottom: 1px #fff solid;
}
.rank_box table td {
  font-weight: bold;
  white-space: nowrap;
}
.rank_box table tr:last-child th {
  border-bottom: #666 1px solid;
}

.rank_box table.spread {
  width: 96%;
  margin: auto;
}
.rank_box table.spread th {
  border-right: #fff 1px solid;
  border-bottom: #666 solid 1px;
}
.rank_box table.spread th.table_title {
  background: #2d56ba;
  border-bottom: #fff 1px solid;
}
.rank_box table.spread th:last-child {
  border-right: #666 1px solid;
}
.rank_box table.spread img {
  width: 56%;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 750px) {
  .rank_box table.spread {
    width: 90%;
  }
  .rank_box table.spread th .pc_table {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .rank_box table.spread th .pc_table .images {
    width: 30%;
    margin-right: 0.6em;
  }
  .rank_box table.spread th .pc_table .images img {
    width: 100%;
  }
}

.rank_point {
  width: 94%;
  text-align: left;
  margin: 1em auto;
}
.rank_point .rank_point_title {
  display: inline-block;
  background: #4d71cc;
  color: #fff;
  font-weight: bold;
  padding: 0.2em 0.8em 0.1em;
  border-radius: 10px 10px 0 0;
}
.rank_point .inner {
  border: #4d71cc 2px solid;
  padding: 0.6em 0.6em 0;
}
.rank_point .inner p {
  font-size: 0.9em;
  text-align: left;
  margin-bottom: 1em;
}
.rank_point .inner .list_title {
  position: relative;
  color: #4d71cc;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 1.4em;
}
.rank_point .inner .list_title::before {
  content: "◆";
  position: absolute;
  left: 0;
}
@media screen and (min-width: 750px) {
  .rank_point {
    width: 90%;
  }
}

.rank_box .campaign {
  position: relative;
  width: 94%;
  background: #fff2e5;
  border-radius: 6px;
  margin: 2em auto 1em;
  padding: 1.6em 0.6em 0.6em;
}
.rank_box .campaign .cp_head {
  position: absolute;
  display: inline-block;
  background: #ffe342;
  font-weight: bold;
  clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
  border: 2px solid #333;
  padding: 0.2em 1em;
  white-space: nowrap;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.rank_box .campaign .campaign_txt {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.4em;
}
.rank_box .campaign .campaign_txt .red {
  font-size: 1.2em;
}

.rank_box .cta_box {
  background: #ebf0ff;
  padding: 1em 0.4em 1px;
}
.rank_box .cta_box .btn a {
  margin-bottom: 1.2em;
}
@media screen and (min-width: 750px) {
  .rank_box .cta_box .btn a {
    width: 90%;
  }
}

.step_wrap {
  padding: 1em 0;
}

h3.step {
  font-size: 1.3em;
  border-bottom: #4d71cc 2px solid;
  margin-bottom: 0.6em;
  padding-bottom: 0.3em;
}
h3.step span {
  display: inline-block;
  background: #4d71cc;
  color: #fff;
  font-size: 0.9em;
  margin-bottom: 0.1em;
  padding: 0.1em 0.6em 0.2em;
  border-radius: 10px;
}
@media screen and (min-width: 750px) {
  h3.step {
    width: 90%;
    margin: 0 auto;
  }
}

.tab-wrap {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  overflow: hidden;
  background: #ebf0ff;
  margin-bottom: 1em;
  padding-top: 1em;
}
.tab-wrap .tab-switch {
  display: none;
}
.tab-wrap .tab-label {
  position: relative;
  cursor: pointer;
  order: -1;
  width: 28%;
  background: #fff;
  color: #2d56ba;
  font-weight: bold;
  text-align: center;
  border: #2d56ba 1px solid;
  border-radius: 10px;
  margin-bottom: 0.8em;
  padding: 0 0.6em 0.1em;
}
.tab-wrap .tab-content {
  width: 100%;
  height: 0;
  background: #fff;
  padding: 0 0.6em;
  opacity: 0;
  transform: translateX(-30%);
  transition: transform 0.3s 80ms, opacity 0.3s 80ms;
}
.tab-wrap .tab-switch:checked + .tab-label {
  background: #2d56ba;
  color: #fff;
}
.tab-wrap .tab-switch:checked + .tab-label + .tab-content {
  order: 1;
  height: auto;
  opacity: 1;
  transform: translateX(0);
}
.tab-wrap .tab-switch:checked ~ .tab-content {
  transform: translateX(100%);
}
@media screen and (min-width: 750px) {
  .tab-wrap {
    width: 90%;
    margin-inline: auto;
  }
}

.tab-content .point_box {
  border: #2d56ba solid 2px;
  margin-top: 0.8em;
}
.tab-content .point_box .title {
  display: flex;
  background: #2d56ba;
  color: #fff;
  font-size: 1.1em;
  text-align: left;
  font-weight: bold;
  padding: 0.4em 0.6em 0.6em;
  line-height: 1;
}
.tab-content .point_box .title span {
  display: inline-block;
  background: #fff;
  color: #2d56ba;
  font-size: 0.8em;
  border-radius: 10px;
  margin-right: 0.5em;
  padding: 0.3em 0.8em;
}
.tab-content .point_box .inner {
  margin: 1em 0.6em 0.8em;
}
.tab-content .point_box .inner p {
  font-size: 0.9em;
  text-align: left;
  margin-bottom: 1em;
}
@media screen and (min-width: 750px) {
  .tab-content .point_box .inner {
    display: flex;
  }
  .tab-content .point_box .inner .images {
    width: 50%;
    margin: 0 0.6em 0 0;
  }
  .tab-content .point_box .inner div {
    width: 50%;
  }
  .tab-content .point_box .inner p:last-child {
    margin-bottom: 0;
  }
}

.documen_title {
  position: relative;
  width: 94%;
  background: #ff5757;
  color: #fff;
  font-size: 1.2em;
  text-align: left;
  margin: 0 auto 1.7em;
  padding: 0.3em 0.8em 0.4em;
  border-radius: 8px;
}
.documen_title::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 21px 21px 0 0;
  border-style: solid;
  border-color: #ff5757 transparent transparent transparent;
  left: 50px;
  bottom: -21px;
}
@media screen and (min-width: 750px) {
  .documen_title {
    width: 90%;
  }
}

.document_tab {
  width: 94%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.document_tab input {
  display: none;
}
.document_tab .item {
  display: block;
  width: 50%;
  background: #e0ffe0;
  font-weight: bold;
  padding: 0.4em 0;
}
.document_tab .item:first-of-type {
  background: #ffe7e7;
}
.document_tab .item:last-of-type {
  background: #fff4e4;
}
.document_tab .tab_content {
  display: none;
  width: 100%;
  background: #ffe7e7;
  color: #ff0b0b;
  font-weight: bold;
  padding: 0.6em 0;
}
.document_tab .tab_content:last-of-type {
  background: #fff4e4;
  color: #ff7300;
}
.document_tab .tab_content .images {
  width: 90%;
  margin: 0.6em auto 0.2em;
}
.document_tab #patternA:checked ~ #patternA_con,
.document_tab #patternB:checked ~ #patternB_con {
  display: block;
}
@media screen and (min-width: 750px) {
  .document_tab {
    width: 90%;
  }
  .document_tab .item {
    background: #ff0b0b;
    color: #fff;
  }
  .document_tab .item:last-of-type {
    background: #ff7300;
  }
  .document_tab .tab_content {
    display: block;
    width: 50%;
    font-size: 0.9em;
  }
  .document_tab .tab_content p {
    margin: 0;
  }
}

h2.table_title .sub {
  position: relative;
  display: inline-block;
  width: 80%;
  background: #2d56ba;
  padding: 0 0.8em;
  z-index: 1;
}
h2.table_title .sub span {
  background: #2d56ba;
  padding: 0 0.5em;
}
h2.table_title .sub span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 0;
  z-index: -1;
}

table.table_contents {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 0.2em;
}
table.table_contents th, table.table_contents td {
  white-space: nowrap;
  font-size: 0.8em;
  border: 1px #666666 solid;
  padding: 0.5em 0.6em 0.4em;
}
table.table_contents th {
  background: #ebf0ff;
  color: #333;
}
table.table_contents td {
  background: #fff;
  font-weight: bold;
}
table.table_contents td .logo {
  border: #d3d3d3 1px solid;
  margin-bottom: 0.2em;
}
table.table_contents td .icon {
  width: 20px;
  margin-bottom: 0.4em;
}
table.table_contents td .btn a {
  width: 100%;
  font-size: 1em;
  border-radius: 10px;
  margin: 0 auto 6px;
  padding: 0.4em 1.4em;
}
table.table_contents tr:nth-child(2) {
  border-top: #ff0000 2px solid;
  border-bottom: #ff0000 2px solid;
}
table.table_contents tr:nth-child(2) td:first-child {
  padding: 0;
  text-align: left;
}
table.table_contents tr:nth-child(2) td .txt_box {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  margin: 0 0 0.7em;
  padding: 0 0.6em 0.2em;
  text-align: left;
}
table.table_contents tr:nth-child(2) td .txt_box .table_icon {
  width: 12px;
  margin-right: 0.4em;
  vertical-align: unset;
}
table.table_contents tr:nth-child(2) td p {
  text-align: center;
  margin: 0 0.4em 0.6em;
}
@media screen and (min-width: 750px) {
  table.table_contents {
    width: 90%;
    margin: 0 auto 0.4em;
  }
}

.small_table {
  width: 98%;
  margin: 0 auto;
  padding-bottom: 1em;
}
@media screen and (min-width: 750px) {
  .small_table {
    width: 94%;
  }
}

.rank_box .last_point {
  width: 96%;
  text-align: left;
  border: #b6b6b6 1px solid;
  border-radius: 6px;
  margin: 1em auto;
  padding: 0.5em;
}
@media screen and (min-width: 750px) {
  .rank_box .last_point {
    width: 90%;
  }
}

.search_wrap {
  padding-bottom: 1em;
}

h3.search_title {
  display: inline-block;
  color: #333;
  font-size: 1.3em;
  border-bottom: #2d56ba 2px solid;
  margin-bottom: 0.8em;
  padding: 0 0.8em 0.2em 0.1em;
}
h3.search_title img {
  width: 26px;
  margin-right: 0.4em;
}

.search_box {
  width: 94%;
  border: #2d56ba 2px solid;
  margin: 0 auto;
}
.search_box h4 {
  color: #fff;
  background: #4d71cc;
  text-align: left;
  font-size: 1em;
  padding: 0.3em 0 0.4em 0.6em;
}
.search_box .radio_box {
  display: flex;
  justify-content: space-between;
  margin: 1em 0.6em 0.4em;
}
.search_box .radio_box input {
  display: none;
}
.search_box .radio_box label {
  width: 31%;
  font-size: 0.9em;
  font-weight: bold;
  border: #333 solid 1px;
  box-shadow: 0px -6px 6px -1px #ccc inset;
  border-radius: 10px;
  margin-bottom: 0.8em;
  padding: 0.4em 0 0.6em;
}
.search_box .radio_box.radio_box2 {
  flex-wrap: wrap;
}
.search_box .radio_box.radio_box2 label {
  width: 48%;
}
.search_box .radio_box input:checked + label {
  background: #487af8;
  color: #fff;
  box-shadow: 0px -6px 6px -1px #4965ac inset;
}
.search_box button {
  display: inline-block;
  width: 90%;
  background: #ff7300;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  border-style: none;
  border-bottom: 4px solid #853c00;
  border-radius: 10px;
  margin: 0 auto 0.8em;
  padding: 0.6em 0;
}
.search_box button img {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 0.3em;
}
@media screen and (min-width: 750px) {
  .search_box {
    width: 90%;
  }
  .search_box .radio_box {
    width: 90%;
  }
}

footer {
  display: block;
  width: 100%;
  background: #2d56ba;
  color: #fff;
  font-size: 0.8em;
  text-align: center;
  padding: 0.8em 0;
}
footer a {
  color: #fff;
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 0.2em;
  padding: 0;
}
footer ul li {
  border-left: 1px solid #fff;
  padding: 0 0.6em;
}
footer ul li:first-child {
  border-left: none;
}

.modal_wrap input {
  display: none;
}
.modal_wrap .modal_overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: rgba(50, 50, 50, 0.6);
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0s 0.2s;
}
.modal_wrap .modal_overlay .modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal_wrap .modal_overlay .modal_content {
  position: absolute;
  width: 97%;
  max-width: 500px;
  align-self: flex-start;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s;
}
.modal_wrap input:checked ~ #example {
  border: #2d56ba 2px solid;
  animation: 0.1s linear rotation1;
}
.modal_wrap h2 {
  position: relative;
  background: #2d56ba;
  color: #fff;
  font-size: 1.2em;
  padding: 0.4em 0;
}
.modal_wrap .modal_fx {
  display: flex;
  align-items: center;
}
.modal_wrap .modal_fx .box {
  width: 50%;
  background: #f8dede;
  padding: 0.4em;
}
.modal_wrap .modal_fx .box:last-of-type {
  background: #ebf0ff;
}
.modal_wrap .modal_fx .box .txt {
  font-size: 0.9em;
  margin-bottom: 0.4em;
}
.modal_wrap .modal_fx .box .banner {
  width: 96%;
  margin: auto;
}
.modal_wrap .modal_fx .box .btn {
  width: 100%;
  margin: auto;
}
.modal_wrap .modal_fx .box .btn a {
  font-size: 1em;
  margin: 0.7em 0 0.9em;
  padding: 0.4em 0;
}
.modal_wrap .close-btn {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  background: #333;
  border-radius: 50%;
  top: -26px;
  right: 0;
}
.modal_wrap .close-btn::before, .modal_wrap .close-btn::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 10px;
  background: #fff;
  top: 50%;
  left: 50%;
}
.modal_wrap .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_wrap .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes rotation1 {
  0% {
    transform: scale(0.4);
  }
  100% {
    transform: scale(1);
  }
}
.result h3 {
  width: 96%;
  font-size: 1.2em;
  text-align: left;
  margin: auto;
  padding: 1em 0.6em 0;
}

.result_table {
  width: 96%;
  margin: 0.4em auto 1.6em;
  border-radius: 10px;
}
.result_table p {
  background: #2d56ba;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.6em;
  padding: 0.2em 0 0.4em;
}
.result_table table {
  width: 94%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #ffffff;
  margin: auto;
}
.result_table table th {
  width: 45%;
  background: #ebf0ff;
  color: #2d56ba;
  text-align: left;
  border: 1px solid #666;
  padding: 0.2em 0.4em;
}
.result_table table td {
  width: 55%;
  text-align: left;
  font-weight: bold;
  border: 1px solid #666;
  padding: 0.2em 0.4em;
}

.result {
  padding-bottom: 1.4em;
}

.result .rank_box .box_head {
  background: #4d71cc;
  border: none;
  margin: 0 0 0.8em;
  padding: 0.2em 0.8em 0.4em;
}
.result .rank_box .box_head .icon {
  display: none;
}
.result .rank_box .box_head .name {
  color: #fff;
}
.result .rank_box .cta_box {
  background: #fff;
  margin: 0.8em 0 0.4em;
}