@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  color: #332d2d;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1024px) {
  body {
    margin-top: 50px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.db {
  display: block;
}

@media (min-width: 481px) {
  .db-pc {
    display: block;
  }
}

.dib {
  display: inline-block;
  font-weight: inherit;
}

@media (min-width: 481px) {
  .dib-pc {
    display: inline-block;
    font-weight: inherit;
  }
}

/*********************************************************
header
*********************************************************/
@media (max-width: 1024px) {
  .header__top {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10;
  }
}

@media (min-width: 1025px) {
  .header__link-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 3;
  }
}
.header__link-btn .link-btn {
  display: flex;
}
@media (min-width: 1025px) {
  .header__link-btn .link-btn {
    flex-direction: column;
  }
}
@media (min-width: 1025px) {
  .header__link-btn .link-btn a {
    display: flex;
    align-items: center;
    padding: 20px 10px 30px;
    white-space: nowrap;
    writing-mode: vertical-rl;
    width: 80px;
  }
  .header__link-btn .link-btn a:last-child {
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .header__link-btn .link-btn a {
    font-size: 14px;
    margin-top: 5px;
    margin-right: 0;
    margin-left: 30px;
    padding: 10px 5px;
  }
}
@media (max-width: 600px) {
  .header__link-btn .link-btn a {
    width: auto;
  }
}
@media (max-width: 480px) {
  .header__link-btn .link-btn a {
    font-size: 12px;
    display: inline-block;
  }
}
@media (max-width: 330px) {
  .header__link-btn .link-btn a {
    display: none;
  }
}
.header__link-btn .link-btn a::before, .header__link-btn .link-btn a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}
@media (min-width: 1025px) {
  .header__link-btn .link-btn a::before {
    margin-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .header__link-btn .link-btn a:first-child::before {
    content: "\f0e0";
    display: inline-block;
    margin-bottom: 20px;
  }
}
.header__link-btn .link-btn a:first-child::after {
  content: "\f0e0";
  margin-left: 10px;
}
@media (min-width: 1025px) {
  .header__link-btn .link-btn a:last-child::before {
    content: "\f07a";
    display: inline-block;
    margin-bottom: 20px;
  }
}
.header__link-btn .link-btn a:last-child::after {
  content: "\f07a";
  margin-left: 10px;
}
@media (min-width: 1025px) {
  .header__link-btn .link-btn a::after {
    display: none;
  }
}

/*-----------------------
menu-btn
-----------------------*/
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .menu-btn {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*-----------------------
hamburger
-----------------------*/
.hamburger {
  display: block;
  padding: 0;
}

.hamburger__top,
.hamburger__middle,
.hamburger__bottom {
  display: block;
  line-height: 13px;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .hamburger__top,
  .hamburger__middle,
  .hamburger__bottom {
    line-height: 10px;
  }
}
.-open .hamburger__top,
.-open .hamburger__middle,
.-open .hamburger__bottom {
  line-height: 20px;
}
@media (max-width: 1024px) {
  .-open .hamburger__top,
  .-open .hamburger__middle,
  .-open .hamburger__bottom {
    line-height: 15px;
  }
}

.-open .hamburger__top {
  transform: rotate(50deg);
}

.-open .hamburger__middle {
  transform: translateX(-15px);
}
@media (max-width: 1024px) {
  .-open .hamburger__middle {
    transform: translateX(-10px);
  }
}

.-open .hamburger__bottom {
  transform: rotate(-50deg);
}

/*-----------------------
gnav
-----------------------*/
.gnav__bg {
  background: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  transition-duration: 1s;
  width: 100%;
  height: 100%;
  z-index: -99;
}
.-open .gnav__bg {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  transition-duration: 0s;
  z-index: 99;
}

.gnav__inner {
  background: #ffaf22;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: auto;
  padding: 100px 0;
  position: fixed;
  top: 0;
  right: -400px;
  transition-duration: 0.3s;
  width: 400px;
  height: 100%;
  z-index: 100;
}
@media (max-width: 400px) {
  .gnav__inner {
    width: 100%;
  }
}
.-open .gnav__inner {
  right: 0;
}

.gnav__item {
  margin-top: 2em;
  text-align: center;
}
.gnav__item:first-child {
  margin-top: 0;
}
.gnav__item a {
  color: #fff;
  font-weight: bold;
}

.gnav__link-btn {
  margin-top: 50px;
}
.gnav__link-btn a::after {
  border-color: transparent transparent transparent #332d2d;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  height: 0;
  width: 0;
  content: "";
  display: inline-block;
  margin-left: 10px;
}
.gnav__link-btn a:last-child {
  margin-top: 15px;
}

/*********************************************************
footer
*********************************************************/
.footer {
  background: #332d2d;
  color: #fff;
}

.footer__inner {
  padding-top: 70px;
  padding-bottom: 70px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
}
@media (max-width: 800px) {
  .footer__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.footer__nav ul {
  text-align: center;
}
.footer__nav li {
  display: inline-block;
}
@media (max-width: 480px) {
  .footer__nav li {
    display: block;
  }
}
.footer__nav li:first-child {
  margin-right: 70px;
}
@media (max-width: 480px) {
  .footer__nav li:first-child {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .footer__nav li:last-child {
    margin-top: 30px;
  }
}
.footer__nav a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.footer__info {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .footer__info {
    display: block;
  }
}

.footer__logo {
  margin-right: 170px;
}
@media (max-width: 1024px) {
  .footer__logo {
    margin-right: 0;
    text-align: center;
  }
}
.footer__logo img {
  width: 150px;
}

@media (max-width: 1024px) {
  .footer__address {
    margin-top: 50px;
    text-align: center;
  }
}
.footer__address dd {
  line-height: 1.5;
  margin-top: 15px;
}
.footer__address dd p:not(:first-child) {
  margin-top: 1em;
}

.footer__copy {
  background: #fff;
  color: #332d2d;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}

/*********************************************************
index.html
*********************************************************/
/*-----------------------
keyvisual
-----------------------*/
.keyvisual {
  padding-bottom: 90px;
  background: #fffbe9;
  position: relative;
  text-align: center;
}

.keyvisual__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------
section-header
-----------------------*/
.section-header {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.section-header__sub {
  position: absolute;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.campaign .section-header__sub {
  top: -32px;
  width: 225px;
}
.top-news .section-header__sub {
  top: -40px;
  width: 150px;
}
.problem .section-header__sub {
  top: -33px;
  width: 208px;
}
.about .section-header__sub {
  top: -35px;
  width: 400px;
}
@media (max-width: 480px) {
  .about .section-header__sub {
    width: 80%;
  }
}
.feature .section-header__sub {
  top: -30px;
  width: 180px;
}
.merit .section-header__sub {
  top: -30px;
  width: 150px;
}
.plan .section-header__sub {
  top: -35px;
  width: 150px;
}
.flow .section-header__sub {
  top: -35px;
  width: 150px;
}
.qa .section-header__sub {
  top: -40px;
  width: 110px;
}
.cdt .section-header__sub {
  top: -33px;
  width: 240px;
}
.top-bing .section-header__sub {
  top: -30px;
  width: 310px;
}

.section-header__bg {
  background-size: cover;
  padding: 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
}
.section-header__bg.-type01 {
  background-image: url(image.php?id=040);
}
.section-header__bg.-type02 {
  background-image: url(image.php?id=041);
}

.section-header__ttl {
  color: #fff;
  display: inline-block;
  font-size: 48px;
  font-weight: bold;
  position: relative;
  text-align: center;
}
@media (max-width: 480px) {
  .section-header__ttl {
    font-size: 36px;
    font-size: 10vw;
  }
}

.section-header__balloon {
  position: absolute;
  top: -80px;
  right: -250px;
  width: 200px;
  max-width: 200px;
  min-width: 200px;
}
@media (max-width: 1100px) {
  .section-header__balloon {
    display: none;
  }
}
.section-header__balloon.-type01 {
  right: -295px;
}
.section-header__balloon.-type02 {
  right: -225px;
}
.section-header__balloon.-type03 {
  right: -190px;
}

/*-----------------------
campaign
-----------------------*/
.campaign {
  display: none;
  padding-top: 80px;
  padding-bottom: 150px;
  background: #fffbe9;
  position: relative;
}
@media (max-width: 1000px) {
  .campaign {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.campaign__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}

.campaign__images {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .campaign__images {
    display: block;
  }
}

.campaign__img {
  width: 48%;
}
@media (max-width: 768px) {
  .campaign__img {
    text-align: center;
    width: 100%;
  }
  .campaign__img:last-child {
    margin-top: 30px;
  }
}

/*-----------------------
top-news
-----------------------*/
.top-news {
  background: #fffbe9;
  position: relative;
  padding-top: 50px;
  padding-bottom: 150px;
}

.top-news__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .top-news__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

/*-----------------------
sintyaku
-----------------------*/
.sintyaku {
  width: 100%;
}

.sintyakuli {
  width: 90%;
  border-bottom: 1px dotted #000;
  list-style: none;
  padding: 30px;
}
@media (max-width: 1024px) {
  .sintyakuli {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .sintyakuli {
    padding: 30px 15px;
    width: 95%;
  }
}

.sintyakua {
  color: #000;
  text-decoration: none;
}

.sintyakuspan {
  background-color: #2388b8;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  margin: 0 20px 5px 0;
  padding: 5px;
}

time {
  display: inline-block;
  font-weight: bold;
}

.sintyakup {
  color: #1c448d;
  margin-top: 10px;
  overflow: hidden;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new::after {
  content: "NEW";
  color: #d10606;
  font-size: 1.1rem;
  border: 1px solid #d10606;
  padding: 4px 8px;
  margin: 0 0 0 20px;
  display: inline-block;
  line-height: 1;
}

.gonews {
  text-align: center;
}

.gonews__btn {
  text-align: center;
  width: 95%;
  max-width: 300px;
  height: 50px;
  background-color: #1A72B5;
  vertical-align: middle;
  color: #FFFFFF;
  content: "";
  z-index: 3;
  transform: skewX(-20deg);
  margin-top: 30px;
  margin-right: auto;
  margin-bottom: 0;
  border: none;
  margin-left: auto;
  box-shadow: 6px 8px 0px #115683;
  cursor: pointer;
}

.gonews__btn.golp-pb {
  margin-bottom: 50px;
}

@media (min-width: 1025px) {
  .gonews__btn.golp-pb {
    margin-bottom: 70px;
  }
}
.gonews__btn:active {
  box-shadow: 0px 0px rgba(0, 0, 0, 0);
  margin-left: 6px;
  margin-top: 38px;
  margin-bottom: -8px;
}

.gonews__btn:hover {
  background-color: #248FE1;
}

/*-----------------------
problem
-----------------------*/
.problem {
  padding-top: 30px;
  padding-bottom: 150px;
  position: relative;
}

.problem__bg {
  background: #ffe948;
  padding: 100px 0 50px;
  position: relative;
}
.problem__bg::after {
  border-color: #ffe948 transparent transparent transparent;
  border-width: 40px 150px 0 150px;
  border-style: solid;
  height: 0;
  width: 0;
  content: "";
  margin-left: -150px;
  position: absolute;
  bottom: -40px;
  left: 50%;
}

.problem__list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .problem__list {
    padding: 0 3%;
  }
}
@media (max-width: 600px) {
  .problem__list {
    flex-direction: column;
    justify-content: center;
  }
}

.problem__item {
  background: #fff;
  border: 5px solid #332d2d;
  width: 48%;
}
@media (max-width: 600px) {
  .problem__item {
    width: 100%;
  }
}
.problem__item:nth-child(odd) {
  margin-top: 5%;
}
@media (max-width: 600px) {
  .problem__item:nth-child(odd) {
    margin-top: 20%;
  }
}
.problem__item:nth-child(even) {
  margin-top: 10%;
}
@media (max-width: 600px) {
  .problem__item:nth-child(even) {
    margin-top: 20%;
  }
}
@media (max-width: 600px) {
  .problem__item:first-child {
    margin-top: 0;
  }
}

.problem__img {
  padding-bottom: 55%;
  position: relative;
}
.problem__img img {
  max-width: 105%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.problem__txt {
  border-top: 5px solid #332d2d;
  font-size: 14px;
  line-height: 1.2;
  padding: 5px 0;
  text-align: center;
}
.problem__txt strong {
  color: #ff3e3e;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .problem__txt strong {
    font-size: 18px;
  }
}

.problem__bottom {
  padding-top: 50px;
  text-align: center;
}
.problem__bottom p {
  font-weight: bold;
  line-height: 1.2;
}
.problem__bottom p:first-child {
  font-size: 36px;
}
@media (max-width: 600px) {
  .problem__bottom p:first-child {
    font-size: 24px;
    font-size: 5vw;
  }
}
.problem__bottom p:last-child {
  font-size: 48px;
}
@media (max-width: 768px) {
  .problem__bottom p:last-child {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .problem__bottom p:last-child {
    font-size: 22px;
    font-size: 6vw;
  }
}
.problem__bottom strong {
  border-bottom: 5px solid #ff3e3e;
  color: #ff3e3e;
}

/*-----------------------
about
-----------------------*/
.about {
  padding-top: 100px;
  padding-bottom: 180px;
  background: #ffaf22;
  position: relative;
}

.about__top {
  background: #fffbe9;
  padding: 30px;
  text-align: center;
}
.about__top p {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  display: inline-block;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 481px) {
  .about__top p {
    line-height: 2;
  }
}

.about__top {
  margin: 0 auto;
}

.about__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .about__inner {
    padding: 0 2%;
  }
}
@media (max-width: 480px) {
  .about__inner {
    margin-top: 50px;
  }
}

.about__img01 {
  display: block;
  margin: 0 auto;
  width: 700px;
}

.about__txt,
.about__bottom {
  background: #fff;
  border: 3px solid #332d2d;
  margin-top: 50px;
  padding: 30px;
  text-align: center;
}
@media (max-width: 480px) {
  .about__txt,
  .about__bottom {
    margin-top: 0;
  }
}
.about__txt p,
.about__bottom p {
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 481px) {
  .about__txt p,
  .about__bottom p {
    line-height: 2;
  }
}

.about__img02 {
  display: block;
  margin: 100px auto 50px;
  width: 700px;
}
@media (max-width: 480px) {
  .about__img02 {
    margin: 15px auto;
  }
}

/* importance */
.importance {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  margin-top: 100px;
}

.importance__ttl {
  border-bottom: 10px solid #000;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: -0.07em;
  padding-bottom: 15px;
  text-align: center;
  -webkit-text-stroke: 2px #000;
}
@media (max-width: 500px) {
  .importance__ttl {
    font-size: 30px;
  }
}
@media (max-width: 330px) {
  .importance__ttl {
    font-size: 24px;
  }
}
.importance__ttl img {
  width: 700px;
}

.importance-graph {
  background: #fffbe9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding: 50px;
}
@media (max-width: 600px) {
  .importance-graph {
    flex-direction: column;
    padding: 30px;
  }
}

.importance-graph__img {
  text-align: center;
  width: 48.5%;
}
@media (max-width: 600px) {
  .importance-graph__img {
    width: 100%;
  }
}
.importance-graph__img img {
  width: 380px;
}

.importance-graph__content {
  text-align: center;
  width: 48.5%;
}
@media (max-width: 600px) {
  .importance-graph__content {
    margin-top: 15px;
    width: 100%;
  }
}

.importance-graph__txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.importance-graph__txt:not(:first-child) {
  margin-top: 30px;
}
.importance-graph__txt strong {
  color: #f00;
}

.importance-graph__block {
  display: block;
}
@media (max-width: 600px) {
  .importance-graph__block {
    display: inline;
  }
}

.importance-graph__link {
  color: blue;
  line-height: 1.5;
  margin-top: 30px;
  text-decoration: underline;
}
.importance-graph__link:hover {
  text-decoration: none;
}
@media (max-width: 480px) {
  .importance-graph__link span {
    display: block;
  }
}
.importance-graph__link span:last-child {
  display: block;
}

.importance-bargraph {
  background: #fffbe9;
  margin-top: 100px;
  padding: 50px;
}
@media (max-width: 600px) {
  .importance-bargraph {
    padding: 30px;
  }
}

.importance-bargraph__link {
  color: blue;
  line-height: 1.5;
  margin-top: 15px;
  text-align: center;
  text-decoration: underline;
}
.importance-bargraph__link:hover {
  text-decoration: none;
}
@media (max-width: 480px) {
  .importance-bargraph__link span {
    display: block;
  }
}

.importance__txt {
  background: #fff;
  border: 3px solid #332d2d;
  margin-top: 50px;
  padding: 30px;
  text-align: center;
}
@media (max-width: 1200px) {
  .importance__txt {
    margin-right: 2%;
    margin-left: 2%;
  }
}
.importance__txt p {
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 481px) {
  .importance__txt p {
    line-height: 2;
  }
}
@media (max-width: 600px) {
  .importance__txt p:last-child {
    margin-top: 1em;
  }
}

/*-----------------------
feature
-----------------------*/
.feature {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fffbe9;
  position: relative;
}

.feature__img {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

/*-----------------------
merit
-----------------------*/
.merit {
  padding-top: 45px;
  padding-bottom: 30px;
  background: #ffaf22;
  position: relative;
}
@media (max-width: 480px) {
  .merit {
    padding-top: 30px;
  }
}

.merit__img {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}

/*-----------------------
plan
-----------------------*/
.plan {
  padding-top: 100px;
  background: #fffbe9;
  position: relative;
}
.plan table {
  background: #fff;
  width: 100%;
}
.plan th,
.plan td {
  border: 1px solid #332d2d;
  padding: 30px;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .plan th,
  .plan td {
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .plan th {
    width: 40%;
  }
}
@media (max-width: 480px) {
  .plan td {
    width: 60%;
  }
}

/* plan-table */
.plan-table {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .plan-table {
    padding: 0 3%;
  }
}

.plan-table__sp .plan-table__bing,
.plan-table__sp .plan-table__yahoo {
  margin-top: 30px;
}
@media (min-width: 601px) {
  .plan-table__sp {
    display: none;
  }
}

@media (max-width: 600px) {
  .plan-table__pctb {
    display: none;
  }
}

.plan-table__ttl {
  background: #f2f2f2;
  font-weight: bold;
  text-align: center;
}
.plan-table__ttl span {
  font-size: 80%;
}
.plan-table__ttl img {
  width: 100px;
}
.plan-table__ttl.-google {
  background: #ffc5c2;
}
.plan-table__ttl.-yahoo {
  background: #ffe1c0;
}
.plan-table__ttl.-empty {
  background: #fffbe9;
  border: none;
}
.plan-table__ttl.-bing {
  background: #91ff97;
}
.plan-table__ttl.-bing img {
  width: 70px;
}
@media (max-width: 480px) {
  .plan-table__ttl.-bing img {
    width: 50px;
  }
}

.plan-table__device {
  margin-bottom: 5px;
  text-align: center;
}
.plan-table__device > span {
  border-radius: 30px;
  display: inline-block;
  background: #f2f2f2;
  font-size: 12px;
  line-height: 1.3;
  min-width: 100px;
  padding: 5px 10px;
}

.plan-table__note {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .plan-table__note.-pc {
    display: none;
  }
}
@media (max-width: 480px) {
  .plan-table__note {
    line-height: 1.3;
    margin-top: 15px;
  }
}

.plan-table__txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.plan-table__fz-small {
  display: block;
  font-size: 14px;
}

/* plan-daily */
.plan-daily {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 15px;
  max-width: 200px;
}
.plan-daily:last-child {
  margin-bottom: 0;
}

.plan-daily__ttl,
.plan-daily__txt {
  font-weight: bold;
}
.-google .plan-daily__ttl,
.-google .plan-daily__txt {
  color: #e61f19;
}
.-yahoo .plan-daily__ttl,
.-yahoo .plan-daily__txt {
  color: #e61f19;
}

.plan-daily__ttl {
  line-height: 1.2;
  margin-right: 15px;
  width: 2.5em;
}

.plan-daily__seika {
  font-size: 12px;
  margin-bottom: 3px;
}

.plan-daily__txt {
  font-size: 24px;
}
@media (max-width: 400px) {
  .plan-daily__txt {
    font-size: 20px;
  }
}

.plan-daily__kome {
  color: #332d2d;
  font-size: 10px;
  vertical-align: super;
}

/* recommend */
.recommend {
  margin-top: 50px;
  padding-bottom: 150px;
  position: relative;
}

.recommend__inner {
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
  background-size: 1800% 1800%;
  -z-animation: rainbow 18s ease infinite;
  animation: rainbow 18s ease infinite;
}
@keyframes rainbow {
  0% {
    background-position: 0% 82%;
  }
  50% {
    background-position: 100% 19%;
  }
  100% {
    background-position: 0% 82%;
  }
}
/* negative */
.negative {
  padding-top: 50px;
  position: relative;
  text-align: center;
}
.negative img {
  width: 90%;
  max-width: 600px;
}
@media (max-width: 480px) {
  .negative img {
    max-width: 350px;
  }
}

/*-----------------------
link-btn
-----------------------*/
.link-btn a {
  background: #fff;
  border-color: #332d2d;
  border-style: solid;
  border-radius: 15px;
  border-width: 1px 5px 7px 2px;
  color: #332d2d;
  display: block;
  font-weight: bold;
  margin-right: auto;
  margin-left: auto;
  padding: 15px 5px;
  position: relative;
  text-align: center;
  width: 200px;
}
.link-btn a:hover {
  top: 3.5px;
  left: 2.5px;
  border-width: 1px 2px;
  margin-bottom: 6px;
}
@media (min-width: 551px) {
  .link-btn.-large a {
    font-size: 40px;
    width: 550px;
  }
}
@media (max-width: 550px) {
  .link-btn.-large a {
    font-size: 32px;
    width: 90%;
  }
}
@media (max-width: 400px) {
  .link-btn.-large a {
    font-size: 24px;
  }
}
@media (max-width: 300px) {
  .link-btn.-large a {
    font-size: 24px;
    font-size: 6vw;
  }
}
.link-btn.-orange a {
  background: #ffaf22;
}

/*-----------------------
flow
-----------------------*/
.flow {
  padding-top: 150px;
  padding-bottom: 150px;
  background: #ffaf22;
  position: relative;
}
@media (max-width: 768px) {
  .flow {
    padding-top: 100px;
  }
}

.flow__slider {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .flow__slider {
    padding: 0 3%;
  }
}

.flow__list {
  display: flex;
}

.flow__item {
  margin-left: 15px;
}
@media (max-width: 600px) {
  .flow__item {
    width: 20%;
  }
  .flow__item:first-child {
    margin-left: 0;
  }
}
.flow__item.-active label {
  background-image: url(image.php?id=039);
}
.flow__item label {
  background-image: url(image.php?id=038);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 100px;
  text-align: center;
  width: 100px;
  height: 100px;
}
@media (max-width: 600px) {
  .flow__item label {
    line-height: 80px;
    line-height: 14vw;
    width: 80px;
    width: 15vw;
    height: 80px;
    height: 15vw;
  }
}
@media (max-width: 480px) {
  .flow__item label {
    line-height: 50px;
    line-height: 14vw;
    width: 50px;
    width: 15vw;
    height: 50px;
    height: 15vw;
  }
}
.flow__item label:hover {
  background-image: url(image.php?id=039);
}

.flow__check {
  display: none;
}

.flow__contents {
  margin-bottom: 30px;
}

.flow__content {
  background: #fff;
  border: 3px solid #332d2d;
  display: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 30px;
  padding: 50px 10px;
}
.flow__check:checked + .flow__content {
  display: block;
}

.flow__payment {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .flow__payment {
    padding: 0 3%;
  }
}
.flow__payment dt {
  font-weight: bold;
  letter-spacing: 0.07em;
}
.flow__payment dd {
  font-size: 14px;
  line-height: 1.3;
  margin: 1em 0 0 1em;
  text-indent: -1em;
}

/*-----------------------
qa
-----------------------*/
.qa {
  padding-top: 100px;
  padding-bottom: 50px;
  background: #fffbe9;
  position: relative;
}

.qa__list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .qa__list {
    padding: 0 3%;
  }
}

.qa__q,
.qa__a {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

.qa__q {
  background: #332d2d;
  color: #fff;
  padding: 5px 10px 10px 10px;
}
@media (max-width: 480px) {
  .qa__q {
    padding: 5px 20px 10px 20px;
  }
}
.qa__q:not(:first-child) {
  margin-top: 70px;
}

.qa__a {
  background: #fff;
  border-color: #332d2d;
  border-radius: 15px;
  border-style: solid;
  border-width: 5px 5px 8px 5px;
  margin-top: 50px;
  padding: 25px 15px;
  position: relative;
}
.qa__a::before, .qa__a::after {
  content: "";
  position: absolute;
}
.qa__a::before {
  border-color: transparent transparent #332d2d transparent;
  border-width: 0 25px 40px 25px;
  border-style: solid;
  height: 0;
  width: 0;
  top: -40px;
  left: 30px;
}
.qa__a::after {
  border-color: transparent transparent #fff transparent;
  border-width: 0 20px 30px 20px;
  border-style: solid;
  height: 0;
  width: 0;
  top: -30px;
  left: 35px;
}

/*-----------------------
cdt
-----------------------*/
.cdt {
  display: none;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #000;
  position: relative;
}
@media (max-width: 480px) {
  .cdt {
    padding-top: 50px;
  }
}

.cdt__container {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding: 50px 0;
}
@media (max-width: 1000px) {
  .cdt__container {
    padding: 50px 3%;
  }
}

.cdt__cb {
  animation: flicker 1.5s infinite alternate;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .cdt__cb {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .cdt__cb {
    font-size: 24px;
  }
}

.cdt__box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cdt__txt {
  animation: flicker 1.5s infinite alternate;
  align-self: center;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  margin-right: 0.6em;
}
@media (max-width: 1000px) {
  .cdt__txt {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .cdt__txt {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .cdt__txt {
    font-size: 14px;
  }
}

.cdt__txt span {
  display: block;
  line-height: 1;
}

.cdt__date {
  animation: flicker 1.5s infinite alternate;
  color: #fff;
  font-size: 40px;
}
@media (max-width: 1000px) {
  .cdt__date {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .cdt__date {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .cdt__date {
    font-size: 18px;
  }
}

.cdt__num {
  font-size: 200%;
  padding: 0 0.15em;
}
@media (max-width: 480px) {
  .cdt__num {
    font-size: 150%;
  }
}

@media screen and (min-width: 768px) {
  .cdt__num {
    line-height: 1;
    padding: 0.3em 0.15em;
  }
}
.cdt__btn {
  text-align: center;
}
.cdt__btn a {
  background: #ffe000;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  margin-top: 80px;
  padding: 15px;
}
@media (max-width: 768px) {
  .cdt__btn a {
    font-size: 18px;
    margin-top: 50px;
  }
}
.cdt__btn a:hover {
  background: #ffb100;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff, 0 0 20px #ffe000, 0 0 30px #ffe000, 0 0 40px #ffe000, 0 0 50px #ffe000, 0 0 80px #ffe000;
  }
}
/*-----------------------
top-bing
-----------------------*/
.top-bing {
  padding-bottom: 100px;
  position: relative;
}

/*********************************************************
news.html
*********************************************************/
.news-page-ttl {
  background: #ffaf22;
  line-height: 1.3;
  padding: 5px;
  text-align: center;
}
@media (max-width: 400px) {
  .news-page-ttl {
    font-size: 14px;
  }
}
.news-page-ttl span {
  display: inline-block;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  list-style: none;
  margin-top: 50px;
}
@media (max-width: 480px) {
  .breadcrumbs {
    margin-left: auto;
    margin-right: auto;
    width: 98%;
  }
}

.breadcrumbs li {
  line-height: 1.5;
  padding-right: 30px;
  position: relative;
}

.breadcrumbs li:last-child {
  padding-right: 0;
}

.breadcrumbs li:not(:last-child)::after {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  content: "";
  position: absolute;
  top: 45%;
  right: 10px;
  transform: rotate(-45deg) translateY(-50%);
  width: 8px;
  height: 8px;
}

.news-container {
  margin: 0 auto 50px;
  max-width: 1000px;
  width: 70%;
}

@media (min-width: 1025px) {
  .news-container {
    margin: 0 auto 70px;
  }
}
.news-article {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 30px;
  margin-top: 50px;
}

.news-container article p.midashi a {
  display: block;
  padding: 0 0 20px 0;
  border-color: #424242;
  border-style: solid;
  border-width: 0 0 1px 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 30px;
  text-decoration: none;
}

.news-container article p.date {
  margin: 20px 0 0 0;
  color: #424242;
  font-size: 16px;
  letter-spacing: 4px;
}

.news-container article p.theme {
  margin: 20px 0 0 0;
}

.news-container article p.theme a {
  display: inline-block;
  padding: 5px;
  background: #424242;
  color: #fff;
  font-size: 16px;
  letter-spacing: 4px;
  text-decoration: none;
}

.news-container article div.text {
  margin: 20px 0 0 0;
  color: #424242;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 30px;
}

.news-container .pager #pagination ul {
  width: 80%;
  margin: 50px auto 0 auto;
  box-sizing: border-box;
  font-size: 0;
}

.news-container .pager #pagination ul li {
  display: inline-block;
  margin-top: 10px;
  width: 60px;
  vertical-align: top;
  box-sizing: border-box;
  padding: 0 2%;
  text-align: center;
}

.news-container #pagination ul li a {
  display: block;
  padding: 8px 5px;
  box-sizing: border-box;
  background: #424242;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.news-container #pagination ul li a:hover, .news-container #pagination ul li a.active {
  background: #ccc;
  color: #424242;
}

.news-container #nextpage {
  display: none;
}

.news-container #prevpage {
  display: none;
}

.news-container .sub {
  display: table;
  width: 100%;
  margin: 50px 0 0 0;
  table-layout: fixed;
  box-sizing: border-box;
}

.news-container .sub article {
  display: table-cell;
  vertical-align: top;
  background: #ccc;
}

.news-container .sub article p {
  padding: 10px 0;
  background: #424242;
  color: #fff;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
}

.news-container .sub article ul {
  list-style-type: none;
  padding: 10px;
}

.news-container .sub article ul li {
  display: block;
}

.news-container .sub article ul li a {
  display: block;
  padding: 10px;
  background: #fff;
  color: #424242;
  font-size: 14px;
  letter-spacing: 4px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-container .sub article ul li:nth-of-type(n+2) a {
  border-color: #D3D3D3;
  border-style: dashed;
  border-width: 1px 0 0 0;
}

.news-container .sub article ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .news-container .sub {
    display: block;
  }
  .news-container .sub article {
    display: block;
  }
  .news-container .pager {
    margin: 20px 0 0 0;
  }
  .news-container .pager::after {
    content: "";
    display: block;
    clear: both;
  }
  .news-container .pager #pagination ul {
    display: none;
  }
  .news-container .pager #pagination ul li {
    display: none;
  }
  .news-container .pager #pagination ul li:nth-of-type(n+6) {
    display: none;
  }
  .news-container .pager #pagination ul li a {
    display: none;
  }
  .news-container .pager #nextpage,
  .news-container .pager #prevpage {
    box-sizing: border-box;
    display: block;
    width: 50%;
  }
  .news-container .pager #nextpage {
    float: right;
  }
  .news-container .pager #nextpage ul {
    list-style-type: none;
    text-align: right;
  }
  .news-container .pager #nextpage ul li a {
    display: inline-block;
    padding: 20px;
    background: #424242;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
  .news-container .pager #prevpage {
    float: left;
  }
  .news-container .pager #prevpage ul {
    list-style-type: none;
  }
  .news-container .pager #prevpage ul li a {
    display: inline-block;
    padding: 20px;
    background: #424242;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
}
@media (max-width: 480px) {
  .news-container {
    width: 95%;
  }
}
/*********************************************************
新着情報
*********************************************************/
.cite {
  font-size: 12px;
}

.update-table {
  width: 100%;
}

.update-table td {
  border: 1px solid #333;
  padding: 5px;
}

.update-table td:last-child {
  text-align: center;
}

.update-table__orange {
  background: #ffccc6;
}

.update-table__orange * {
  font-weight: bold;
}

.update-table__blue {
  background: #7bcbff;
}

.update-table__blue * {
  font-weight: bold;
}

.update-table2 {
  overflow: auto;
}

.update-table2__table {
  width: 100%;
}
@media (max-width: 800px) {
  .update-table2__table {
    width: 600px;
  }
}
.update-table2__table th,
.update-table2__table td {
  border: 1px solid #333;
  padding: 5px;
}
@media (max-width: 980px) {
  .update-table2__table th,
  .update-table2__table td {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .update-table2__table th,
  .update-table2__table td {
    white-space: nowrap;
  }
}
.update-table2__table td:first-child {
  background: #fff;
  font-weight: bold;
}
@media (max-width: 800px) {
  .update-table2__table td:first-child {
    position: sticky;
    left: 0;
  }
  .update-table2__table td:first-child::before, .update-table2__table td:first-child::after {
    background: #333;
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
  }
  .update-table2__table td:first-child::before {
    left: -1px;
  }
  .update-table2__table td:first-child::after {
    right: -1px;
  }
}
.update-table2__table td:not(:first-child) {
  text-align: center;
}

.update-table2__scroll {
  font-size: 14px;
  margin-top: 5px;
}
@media (min-width: 801px) {
  .update-table2__scroll {
    display: none;
  }
}

.news__img {
  padding: 10px;
  text-align: center;
}

.news__img img {
  height: auto;
  max-width: 100%;
}

/*********************************************************
campaign.html
*********************************************************/
body.cp-bg {
  background: #fff24c;
  margin-top: 0;
}

.cp-mv {
  position: relative;
  text-align: center;
}

.cp-limit {
  background: #d33c3c;
  padding: 50px 0 30px;
  position: relative;
}
@media (max-width: 1000px) {
  .cp-limit {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.cp-limit::after {
  background-image: url(image.php?id=060);
  background-repeat: repeat-x;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 100%;
  height: 90px;
}

.cp-limit__container {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  max-width: 1000px;
}
@media (max-width: 480px) {
  .cp-limit__container {
    display: block;
  }
}

.cp-limit__content,
.cp-limit__content02 {
  font-size: 18px;
  padding: 12px;
  text-align: center;
}

.cp-limit__content {
  background: #fff;
  color: #d33c3c;
  font-weight: bold;
  width: 45%;
}
@media (max-width: 480px) {
  .cp-limit__content {
    width: 100%;
  }
}

.cp-limit__content02 {
  color: #fff;
  font-weight: bold;
  width: 55%;
}
@media (max-width: 480px) {
  .cp-limit__content02 {
    width: 100%;
  }
}

.cp-about {
  background-image: url(image.php?id=065), url(image.php?id=064);
  background-position: bottom left, top center;
  background-repeat: no-repeat;
  background-size: contain, cover;
  padding: 200px 0;
}
@media (max-width: 480px) {
  .cp-about {
    padding: 100px 0;
  }
}

.cp-about__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .cp-about__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.cp-about__ttl {
  text-align: center;
}

.cp-about__box {
  background: #fff;
  border: 2px solid #333;
  margin-top: 30px;
  padding: 15px;
}
.cp-about__box.-top {
  padding: 50px 30px;
}

.cp-about__txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.cp-about__txt strong {
  color: red;
}

.cp-about__txt02 {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 480px) {
  .cp-about__txt02 {
    display: block;
    text-align: center;
  }
}
.cp-about__txt02 p {
  font-size: 14px;
}
.cp-about__txt02 p:nth-child(2) {
  margin: 0 10px;
}
@media (max-width: 480px) {
  .cp-about__txt02 p:nth-child(2) {
    margin: 20px auto;
    transform: rotate(90deg);
    width: 1em;
    height: 1em;
  }
}

.cp-about__list li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 2em;
  position: relative;
}
.cp-about__list li::after {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.cp-about__list li:not(:first-child) {
  margin-top: 10px;
}

.cp-btn {
  margin-top: 50px;
  text-align: center;
}
.cp-btn img {
  width: 400px;
}

.cp-price {
  margin-top: 50px;
}

.cp-price__inner {
  text-align: center;
}
@media (max-width: 1200px) {
  .cp-price__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.cp-price__list {
  display: inline-block;
  margin-top: 30px;
  text-align: left;
}
.cp-price__list li {
  line-height: 1.5;
  margin-top: 10px;
  padding-left: 3em;
  position: relative;
}
.cp-price__list li:first-child::before {
  content: "※1";
  position: absolute;
  top: 0;
  left: 0;
}
.cp-price__list li:nth-child(2)::before {
  content: "※2";
  position: absolute;
  top: 0;
  left: 0;
}

.flow.-cp {
  background: #fff24c;
}

.cp-flow-ttl {
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 600px) {
  .cp-flow-ttl {
    padding-left: 2%;
    padding-right: 2%;
  }
}

/*********************************************************
bing.html
*********************************************************/
@media (min-width: 769px) {
  .pcblock {
    display: block;
  }
}

@media (min-width: 481px) {
  .tbblock {
    display: block;
  }
}

body.page-bing {
  margin-top: 0;
}

.bing-mv img {
  vertical-align: middle;
}

.bing-red {
  background: #d33c3c;
  padding: 50px 0;
  position: relative;
}
@media (max-width: 1000px) {
  .bing-red {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (max-width: 480px) {
  .bing-red {
    padding: 30px 0;
  }
}
.bing-red::after {
  background-image: url(image.php?id=060);
  background-repeat: repeat-x;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 100%;
  height: 90px;
}

.bing-wrapper {
  padding: 50px 0;
}

.bing-inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .bing-inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.bing-btn {
  position: relative;
  text-align: center;
}
.bing-btn a {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 500px;
  height: 170px;
}
@media (max-width: 500px) {
  .bing-btn a {
    padding-bottom: 28%;
    width: 90%;
    height: auto;
  }
}
.bing-btn a:hover img:first-of-type {
  opacity: 0;
}
.bing-btn a:hover img:last-of-type {
  opacity: 1;
  top: 5px;
}
.bing-btn img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bing-btn img:last-of-type {
  opacity: 0;
}

.bing-ttl {
  margin-bottom: 50px;
  text-align: center;
}

.bing-box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .bing-box {
    display: block;
  }
}
.bing-box.-re {
  flex-direction: row-reverse;
}

.bing-box__img,
.bing-box__txt {
  width: 49%;
}
@media (max-width: 768px) {
  .bing-box__img,
  .bing-box__txt {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .bing-box__img {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .bing-box__txt {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .bing-box__txt.-sptac {
    text-align: center;
  }
}
.bing-box__txt p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
}
.bing-box__txt p:not(:first-child) {
  margin-top: 1em;
}
.bing-box__txt strong {
  color: #c00;
}

.bing-bg {
  background-image: url(image.php?id=080);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 3px solid #333;
  margin-top: 30px;
  padding: 30px;
  text-align: center;
}
.bing-bg p {
  font-weight: bold;
  line-height: 1.5;
}

.bing-note {
  counter-reset: num;
  margin-top: 15px;
}
.bing-note li {
  counter-increment: num 1;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 0.5em;
  padding-left: 2.5em;
  position: relative;
}
.bing-note li::before {
  content: "※" counter(num);
  position: absolute;
  top: 0;
  left: 0;
}

.bing-box__cite {
  font-weight: normal;
}
.bing-box__cite cite {
  display: inline-block;
  line-height: 1.3;
  padding-left: 3em;
  position: relative;
}
.bing-box__cite cite::before {
  content: "出典：";
  position: absolute;
  top: 0;
  left: 0;
}

.bing-box02,
.bing-note {
  margin-bottom: 30px;
}

.bing-box02__txt {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.bing-box02__txt p {
  font-weight: bold;
}
.bing-box02__txt strong {
  color: #c00;
}

.bing-box02__img {
  margin-top: 15px;
  text-align: center;
}

.icon-link {
  display: block;
  font-size: 10px;
  font-weight: normal;
  margin-top: 5px;
}