@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  background: #332d2d;
  color: #332d2d;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.dib {
  display: inline-block;
}

@media (min-width: 481px) {
  .dib-pc {
    display: inline-block;
  }
}

.db {
  display: block;
}

@media (min-width: 481px) {
  .db-pc {
    display: block;
  }
}

@media (min-width: 481px) {
  .sp-block {
    display: none;
  }
}

.-fc_red {
  color: #f12424;
}

/*********************************************************
header
*********************************************************/
@media (max-width: 1024px) {
  .header__top {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 999;
  }
}

@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 {
  background: #fff;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .menu-btn {
    top: 5px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*-----------------------
hamburger
-----------------------*/
.hamburger {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
}

.hamburger__top,
.hamburger__middle,
.hamburger__bottom {
  background: #000;
  display: block;
  position: absolute;
  left: 2.5px;
  transition: 0.3s;
  width: 35px;
  height: 5px;
}

.hamburger__top {
  top: 7px;
}
.-open .hamburger__top {
  top: 17px;
  transform: rotate(-45deg);
}

.hamburger__middle {
  top: 18px;
}
.-open .hamburger__middle {
  opacity: 0;
}

.hamburger__bottom {
  top: 29px;
}
.-open .hamburger__bottom {
  top: 17px;
  transform: rotate(45deg);
}

/*-----------------------
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: #332d2d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  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 {
  border-color: #6a6a6a !important;
}
.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%;
  }
}
@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;
  align-items: center;
  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 {
  position: relative;
  text-align: center;
}

.keyvisual__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------
section-header
-----------------------*/
.section-header {
  position: relative;
}

.section-header__bg {
  background-color: #eab839;
  background-size: cover;
  padding: 70px 0;
  text-align: center;
}
.section-header__bg::before, .section-header__bg::after {
  content: "";
  background-image: url(image.php?id=022);
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
}
.section-header__bg::before {
  top: 0;
}
.section-header__bg::after {
  bottom: 0;
}
.section-header__bg img {
  margin-left: -175px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 350px;
}

.section-header__ttl {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  position: absolute;
  bottom: 35px;
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 480px) {
  .section-header__ttl {
    font-size: 36px;
    font-size: 10vw;
  }
}

/*-----------------------
campaign
-----------------------*/
.campaign {
  display: none;
}

.campaign__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding-top: 50px;
  padding-bottom: 150px;
}
@media (max-width: 1000px) {
  .campaign__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media (max-width: 480px) {
  .campaign__inner {
    padding-bottom: 80px;
  }
}
@media (max-width: 1000px) {
  .campaign__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.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 {
  position: relative;
}

.top-news__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding-top: 20px;
  padding-bottom: 150px;
}
@media (max-width: 1000px) {
  .top-news__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media (max-width: 480px) {
  .top-news__inner {
    padding-bottom: 80px;
  }
}
@media (max-width: 1000px) {
  .top-news__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

/*-----------------------
sintyaku
-----------------------*/
.sintyaku {
  width: 100%;
}

.sintyakuli {
  width: 90%;
  border-bottom: 1px dotted #fff;
  list-style: none;
  padding: 30px;
}
@media (max-width: 480px) {
  .sintyakuli {
    padding: 30px 10px;
    width: 100%;
  }
}

.sintyakua {
  color: #fff;
  text-decoration: none;
}

.sintyakuspan {
  background-color: #fff;
  border-radius: 3px;
  color: #332d2d;
  display: inline-block;
  margin-right: 20px;
  padding: 5px;
}

time {
  display: inline-block;
  font-weight: bold;
  margin-right: 40px;
}

.sintyakup {
  color: #fff;
  margin-top: 10px;
  overflow: hidden;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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;
}

/*-----------------------
sec01
-----------------------*/
.sec01 {
  position: relative;
}
.sec01::before, .sec01::after {
  background: repeating-linear-gradient(-45deg, #332d2d, #332d2d 20px, white 20px, white 40px);
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
}
.sec01::before {
  top: 0;
}
.sec01::after {
  bottom: 0;
}

.sec01__inner {
  overflow: hidden;
  padding: 20px 0;
}
@media (min-width: 1025px) {
  .sec01__inner {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .sec01__inner {
    padding: 20px 0 50px;
  }
}

@media (min-width: 1025px) {
  .sec01__box01,
  .sec01__box03 {
    width: 25%;
  }
}

@media (max-width: 1024px) {
  .sec01__box01 {
    display: none;
  }
}

.sec01__box02 {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1025px) {
  .sec01__box02 {
    width: 50%;
  }
}

.sec01__box03 {
  margin-top: 30px;
}

.sec01__box01 {
  background-image: url(image.php?id=014);
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.sec01__list {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .sec01__list {
    padding: 0 2%;
  }
}

.sec01__item {
  display: flex;
  align-items: center;
  color: #fff;
}
.sec01__item:nth-child(even) {
  margin-left: auto;
}
.sec01__item p {
  font-size: 36px;
  font-weight: bold;
  padding: 0 15px;
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .sec01__item p {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .sec01__item p {
    font-size: 24px;
  }
}

.sec01__icon {
  width: 100px;
}

.sec01__txt {
  position: relative;
  text-align: center;
}
.sec01__txt::before {
  content: "";
  background-image: url(image.php?id=015);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -20%);
  width: 300px;
  height: 300px;
  z-index: -1;
}

.sec01__biohazard {
  width: 120px;
  height: 120px;
}

@media (max-width: 1024px) {
  .sec01__txt p {
    display: inline-block;
    vertical-align: middle;
  }
}

.sec01__txt02 {
  color: #eab839;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 1em;
  text-align: center;
}
@media (min-width: 1025px) {
  .sec01__txt02 {
    writing-mode: vertical-rl;
  }
}
@media (max-width: 1024px) {
  .sec01__txt02 {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .sec01__txt02 {
    font-size: 24px;
  }
}
.sec01__txt02 span {
  display: block;
}
.sec01__txt02 span:first-child {
  margin-left: 10px;
}
@media (min-width: 1025px) {
  .sec01__txt02 span:last-child {
    margin-bottom: -7em;
  }
}

/*-----------------------
sec02
-----------------------*/
.sec02 {
  background-color: #e0e0e0;
  background-image: url(image.php?id=016);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 50px;
  position: relative;
}

.sec02__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .sec02__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

@keyframes pulsate {
  100% {
    text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff, 0 0 40px #f09, 0 0 70px #f09, 0 0 80px #f09, 0 0 90px #f09, 0 0 110px #f09;
  }
  0% {
    text-shadow: 0 0 4px #fff, 0 0 10px #fff, 0 0 18px #fff, 0 0 38px #f09, 0 0 63px #f09, 0 0 70px #f09, 0 0 84px #f09, 0 0 100px #f09;
  }
}
.sec02__arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.sec02__arrow p {
  animation: pulsate 0.11s ease-in-out infinite alternate;
  background: #332d2d;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  padding: 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .sec02__arrow p {
    font-size: 30px;
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .sec02__arrow p {
    font-size: 18px;
  }
}
.sec02__arrow img {
  width: 100%;
}

.sec02__list {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 480px) {
  .sec02__list {
    padding: 80px 2%;
  }
}
@media (min-width: 481px) {
  .sec02__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 481px) {
  .sec02__item:nth-child(2) {
    align-self: center;
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .sec02__item:last-child {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .sec02__item {
    margin-top: 10px;
  }
  .sec02__item:first-child {
    margin-top: 0;
  }
}

/*-----------------------
sec03
-----------------------*/
.sec03 {
  padding-bottom: 150px;
}
@media (max-width: 480px) {
  .sec03 {
    padding-bottom: 80px;
  }
}

.sec03__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .sec03__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
.sec03__inner.-pt {
  padding-top: 50px;
}

.sec03__ttl {
  background-color: #eab839;
  background-image: url(image.php?id=022);
  background-repeat: repeat-x;
  margin-top: 50px;
  position: relative;
  text-align: center;
}
.sec03__ttl.-importance {
  margin-top: 100px;
}
.sec03__ttl.-importance h3 {
  line-height: 1.2;
}
@media (max-width: 600px) {
  .sec03__ttl.-importance h3 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .sec03__ttl.-importance h3 {
    font-size: 20px;
  }
}
.sec03__ttl.-importance .dib {
  display: inline-block;
}
.sec03__ttl h3 {
  background: #332d2d;
  color: #fff;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  width: 50%;
}
@media (max-width: 480px) {
  .sec03__ttl h3 {
    font-size: 24px;
  }
}
@media (max-width: 300px) {
  .sec03__ttl h3 {
    width: 70%;
  }
}

.sec03__txt {
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 480px) {
  .sec03__txt {
    font-size: 18px;
  }
}

.sec03__note {
  margin: 30px 0 0 1em;
  text-indent: -1em;
}
.sec03__note li {
  line-height: 1.3;
}
.sec03__note li:first-child {
  color: #fff;
}
.sec03__note li:last-child {
  color: #ff3833;
  margin-top: 5px;
}

/*-----------------------
importance
-----------------------*/
.importance {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .importance {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.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: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  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: 768px) {
  .importance-graph__img {
    width: 40%;
  }
}
@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: 768px) {
  .importance-graph__content {
    width: 58%;
  }
}
@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: #fff;
  margin-top: 50px;
  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 {
  color: #fff;
  margin-top: 50px;
  text-align: center;
}
.importance__txt p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .importance__txt p {
    font-size: 18px;
  }
  .importance__txt p:last-child {
    margin-top: 1em;
  }
}
.importance__txt p .dib {
  display: inline-block;
}

/*-----------------------
sec04
-----------------------*/
.sec04 {
  padding-bottom: 150px;
}
@media (max-width: 480px) {
  .sec04 {
    padding-bottom: 80px;
  }
}

.sec04__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .sec04__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

/* plan-table */
.plan-table {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .plan-table {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media (max-width: 480px) {
  .plan-table {
    overflow: auto;
  }
}
.plan-table table {
  width: 100%;
}
.plan-table table:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 480px) {
  .plan-table .table-yahoo {
    width: 550px;
  }
}
@media (max-width: 480px) {
  .plan-table th,
  .plan-table td {
    font-size: 14px;
    white-space: nowrap;
  }
}

.plan-table__ttl,
.plan-table__google,
.plan-table__yahoo,
.plan-table__bing,
.plan-table__recommend {
  border: 3px solid #fff;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .plan-table__ttl,
  .plan-table__google,
  .plan-table__yahoo,
  .plan-table__bing,
  .plan-table__recommend {
    padding: 7px;
  }
}

.plan-table__ttl {
  background: #646464;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  .plan-table__ttl {
    width: 100px;
    max-width: 100px;
    min-width: 100px;
  }
}
.plan-table__ttl span {
  font-size: 80%;
}
.plan-table__ttl img {
  width: 100px;
}
.plan-table__ttl.-google {
  background: #ff8d00;
}
.plan-table__ttl.-yahoo {
  background: #f12424;
}
.plan-table__ttl.-bing {
  background: #91ff97;
}
.plan-table__ttl.-bing img {
  width: 70px;
}
.plan-table__ttl.-empty {
  background: transparent;
  border: none;
}

.plan-table__google {
  background: #cc7100;
}

.plan-table__yahoo {
  background: #d40e0e;
}

.plan-table__bing {
  background: #36b63d;
}

.plan-table__device {
  margin-bottom: 5px;
  text-align: center;
}
.plan-table__device > span {
  border-radius: 30px;
  display: inline-block;
  background: #f2f2f2;
  color: #332d2d;
  font-size: 12px;
  min-width: 100px;
  padding: 5px 10px;
}
.plan-table__device .dib {
  display: inline-block;
}

.plan-table__note {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 0.5em;
}
.plan-table__note strong {
  font-size: 18px;
}

.plan-table__recommend {
  background: #fff;
  border-color: #000;
  border-width: 5px;
  color: #333;
}

.plan-table__txt {
  font-weight: inherit;
}

.plan-table__fz-small {
  font-size: 14px;
}
@media (max-width: 480px) {
  .plan-table__fz-small {
    font-size: 12px;
  }
}

.plan-daily__mark {
  font-size: 12px;
  vertical-align: super;
}

.plan-table__google-note {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
}

/* sp-scroll */
.sp-scroll {
  color: #fff;
  font-weight: bold;
}
@media (min-width: 431px) {
  .sp-scroll {
    display: none;
  }
}

/* plan-daily */
.plan-daily {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 15px;
  max-width: 190px;
}
.plan-daily.-fc_red {
  color: #f12424;
}
.plan-daily:last-child {
  margin-bottom: 0;
}

.plan-daily__ttl,
.plan-daily__txt {
  font-weight: bold;
}
.plan-daily__ttl.-fc-w,
.plan-daily__txt.-fc-w {
  color: #fff;
}

.plan-daily__ttl {
  line-height: 1.2;
  margin-right: 15px;
}

.plan-daily__seika {
  font-size: 12px;
  margin-bottom: 3px;
}

.plan-daily__txt {
  font-size: 24px;
}
@media (max-width: 480px) {
  .plan-daily__txt {
    font-size: 18px;
  }
}

.plan-daily__kome {
  color: #332d2d;
  font-size: 10px;
  vertical-align: super;
}

/*-----------------------
sec05
-----------------------*/
.sec05__bg {
  background: #fff;
  padding: 50px 0;
}

.sec05__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .sec05__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.sec05-list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .sec05-list {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.sec05-list__item {
  font-size: 18px;
  text-align: center;
  width: 23%;
}
@media (max-width: 768px) {
  .sec05-list__item {
    width: 48%;
  }
  .sec05-list__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .sec05-list__item {
    width: 100%;
  }
  .sec05-list__item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.sec05-list__img {
  width: 150px;
}

.sec05-list__ttl {
  font-weight: bold;
  line-height: 1.5;
  margin-top: 15px;
}
.sec05-list__ttl span {
  display: block;
  font-size: 24px;
}

.sec05-list__txt {
  line-height: 1.3;
  margin-top: 15px;
}

.gradient {
  padding-bottom: 150px;
}
@media (max-width: 480px) {
  .gradient {
    padding-bottom: 80px;
  }
}

.suggest-link {
  color: #fff;
  font-weight: bold;
  padding: 50px 2% 0;
  text-align: center;
}

.suggest-link__ttl {
  font-size: 24px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .suggest-link__ttl {
    font-size: 16px;
  }
}

.suggest-link__btn {
  background: #fff;
  border-radius: 50px;
  color: #332d2d;
  display: inline-block;
  font-size: 60px;
  margin: 50px auto 0;
  padding: 20px 30px;
}
.suggest-link__btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .suggest-link__btn {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .suggest-link__btn {
    font-size: 18px;
  }
}

/*-----------------------
sec06
-----------------------*/
.sec06__bg {
  padding-top: 50px;
  padding-bottom: 120px;
  background: #fff;
}
@media (max-width: 480px) {
  .sec06__bg {
    padding-bottom: 0;
  }
}

.sec06__list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .sec06__list {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.acd-check {
  display: none;
}

.acd-label {
  background: #646464;
  color: #fff;
  cursor: pointer;
  display: block;
  padding-top: 30px;
  padding-right: 60px;
  padding-left: 60px;
  padding-bottom: 30px;
  position: relative;
  height: 100%;
}

.acd-content {
  background: #646464;
  color: #fff;
  display: block;
  opacity: 0;
  padding-top: 30px;
  padding-right: 70px;
  padding-left: 60px;
  padding-bottom: 30px;
  transition: 0.5s;
  visibility: hidden;
  height: 0px;
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .acd-content {
    padding: 20px;
  }
}
.acd-content p {
  line-height: 1.5;
}

.acd-check:checked + .acd-label .arrow3 span {
  transform: rotate(-45deg);
}

.acd-check:checked + .acd-label + .acd-content {
  opacity: 1;
  visibility: visible;
  height: 100%;
  margin-bottom: 35px;
}

.QA {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 60px;
  text-align: center;
  transform: translateY(-50%);
}

.QA p {
  vertical-align: middle;
  color: #fff;
  font-size: 36px;
  width: 60px;
}

.arrow3 {
  width: 50px;
  height: 50%;
  position: absolute;
  right: 5px;
  top: 27px;
}

.arrow3 span {
  position: absolute;
  width: 30px;
  height: 30px;
  transform: rotate(225deg);
  box-sizing: border-box;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

/*-----------------------
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::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
}
.link-btn a:hover {
  top: 3.5px;
  left: 2.5px;
  border-width: 1px 2px;
  margin-bottom: 6px;
}
.link-btn.-orange a {
  background: #ffaf22;
}

/*-----------------------
cdt
-----------------------*/
.cdt {
  padding-bottom: 70px;
  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: 100px 0 50px;
}
@media (max-width: 1000px) {
  .cdt__container {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media (max-width: 1000px) {
  .cdt__container {
    padding: 100px 3% 30px;
  }
}
@media (max-width: 480px) {
  .cdt__container {
    padding: 50px 3% 10px;
  }
}

.cdt__cb {
  animation: flicker 1.5s infinite alternate;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.cdt__cb .dib {
  display: inline-block;
}
@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;
  }
}
/*********************************************************
news.html
*********************************************************/
.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 {
  color: #fff;
  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 #fff;
  border-bottom: 1px solid #fff;
  content: "";
  position: absolute;
  top: 50%;
  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;
  color: #fff;
  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;
  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;
  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;
  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: 5px;
  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: #fff;
  color: #424242;
  font-size: 18px;
  text-decoration: none;
}
.news-container #pagination ul li a:hover, .news-container #pagination ul li a.active {
  background: #424242;
  color: #fff;
}

.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: #fff;
    color: #424242;
    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: #fff;
    color: #424242;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
}
@media (max-width: 480px) {
  .news-container {
    width: 95%;
  }
}
/*********************************************************
新着情報
*********************************************************/
.cite {
  font-size: 12px;
  word-break: break-all;
}

.update-table {
  width: 100%;
}

.update-table td {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 5px;
}
.update-table td.update-table__orange {
  background: #ffccc6;
}
.update-table td.update-table__blue {
  background: #7bcbff;
}

.update-table td:last-child {
  text-align: center;
}

.update-table__orange * {
  font-weight: bold;
}

.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 {
  background: #fff;
  border: 1px solid #333;
  color: #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: #fff;
  margin-top: 0;
  padding-top: 0 !important;
}

.cp-mv {
  position: relative;
  text-align: center;
}

.cp-mv__btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
}

@media (max-width: 480px) {
  .cp-mv__btn {
    width: 70%;
  }
}
.cp-limit {
  background: #969696;
  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=049);
  background-repeat: repeat-x;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 100%;
  height: 90px;
  z-index: 1;
}

@media (max-width: 480px) {
  .cp-limit::after {
    background-size: cover;
  }
}
.cp-limit__container {
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  margin: 0 auto;
  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: #969696;
  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=054), url(image.php?id=053);
  background-position: bottom left, top center;
  background-repeat: no-repeat;
  background-size: contain, cover;
  padding: 200px 0;
}
.cp-about .cp-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .cp-about .cp-btn {
    width: 100%;
  }
}
.cp-about .cp-btn img {
  max-width: 350px;
}
@media (max-width: 600px) {
  .cp-about .cp-btn img {
    max-width: 100%;
  }
}

.cp-about.-cp_winter {
  background-image: url(image.php?id=084), url(image.php?id=091), url(image.php?id=053), url(image.php?id=083);
  background-position: top 50px center, bottom center, top center, bottom center;
  background-size: contain, contain, cover, cover;
  position: relative;
}

.cp-about.-cp_winter2024 {
  background-image: url(image.php?id=103);
  background-size: cover;
  position: relative;
  padding: 100px 0;
}

.cp-about.-cp_winter::after {
  background-image: url(image.php?id=092);
  background-repeat: repeat-x;
  background-size: contain;
  content: "";
  padding-bottom: 100px;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
}

@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%;
  }
}
@media (max-width: 1000px) {
  .cp-about__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
.cp-about__ttl {
  text-align: center;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .cp-about__ttl {
    top: -100px;
  }
}
@media (max-width: 480px) {
  .cp-about__ttl {
    top: -50px;
    width: 100%;
  }
}
.cp-about__ttl img {
  max-width: 365px;
}
@media (max-width: 480px) {
  .cp-about__ttl img {
    max-width: 330px;
  }
}
@media (max-width: 370px) {
  .cp-about__ttl img {
    max-width: 100%;
  }
}

.cp-about__box {
  background: #fff;
  border: 5px solid #0d434f;
  border-radius: 30px;
  margin: 30px auto 0;
  padding: 100px;
  position: relative;
  text-align: center;
  width: 95%;
}
@media (max-width: 1024px) {
  .cp-about__box {
    padding: 100px 50px;
  }
}
@media (max-width: 768px) {
  .cp-about__box {
    padding: 100px 30px;
  }
}
@media (max-width: 480px) {
  .cp-about__box {
    padding-bottom: 90px;
  }
}
@media (max-width: 370px) {
  .cp-about__box {
    padding-top: 70px;
  }
}

.cp-about__box.-top {
  padding: 50px 30px;
}

.cp-about__flex {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cp-about__flex {
    display: block;
  }
}
.cp-about__flex img {
  width: 49%;
}
@media (max-width: 768px) {
  .cp-about__flex img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cp-about__flex img:last-child {
    margin-top: 30px;
  }
}
@media (max-width: 400px) {
  .cp-about__flex img:last-child {
    margin-top: 15px;
  }
}

.cp-about__note {
  font-size: 14px;
  margin-top: 10px;
  text-align: right;
}

.cp-about__icon1,
.cp-about__icon2,
.cp-about__icon3 {
  position: absolute;
}
@media (max-width: 1024px) {
  .cp-about__icon1,
  .cp-about__icon2,
  .cp-about__icon3 {
    display: none;
  }
}

.cp-about__icon1 {
  bottom: 30px;
  left: -30px;
}
.cp-about__icon1 img {
  width: 200px;
}

.cp-about__icon2 {
  top: -20px;
  right: -30px;
}
.cp-about__icon2 img {
  width: 150px;
}

.cp-about__icon3 {
  bottom: 50px;
  right: -30px;
}
.cp-about__icon3 img {
  width: 150px;
}

.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-plan {
  margin-top: 7%;
}

.cp-plan__ttl img {
  width: 500px;
}

.cp-plan__img {
  margin-top: 30px;
}

.cp-plan__txt {
  border: 5px solid #333;
  line-height: 1.3;
  margin-top: 20px;
  padding: 15px;
  text-align: center;
}

.cp-plan__txt p:not(:first-child) {
  margin-top: 1em;
}

.cp-plan__txt strong {
  color: #ff3833;
}

.cp-price {
  margin-top: 50px;
}

.cp-price__inner,
.cp-plan__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  text-align: center;
}

@media (max-width: 1000px) {
  .cp-price__inner,
  .cp-plan__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media (max-width: 1200px) {
  .cp-price__inner,
  .cp-plan__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.cp-price__ttl img {
  width: 350px;
}
@media (max-width: 480px) {
  .cp-price__ttl img {
    width: 320px;
  }
}

.cp-price__table {
  margin-top: 30px;
}

.cp-price__list {
  margin-top: 30px;
  text-align: left;
}

.cp-price__list li {
  line-height: 1.5;
  margin-top: 5px;
  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;
}

.sec05.-cp {
  margin: 100px 0 50px;
}

.cp-flow-ttl {
  margin-bottom: 30px;
  text-align: center;
}
.cp-flow-ttl img {
  width: 600px;
}

@media (max-width: 600px) {
  .cp-flow-ttl {
    padding-left: 2%;
    padding-right: 2%;
  }
}
/*********************************************************
bing.html
*********************************************************/
body.bing-bg {
  background: #fff;
  line-height: 1.5;
}
body.bing-bg .keyvisual img {
  display: block;
}

.bing-entry-btn {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  z-index: 2;
}
@media (max-width: 400px) {
  .bing-entry-btn {
    width: 90%;
    max-width: 380px;
  }
}
.bing-entry-btn a {
  display: block;
  text-align: center;
}
.bing-entry-btn img {
  width: 400px;
}

.bing-section {
  margin-top: 100px;
}
.bing-section.-end {
  margin-bottom: 50px;
}

.bing-section__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .bing-section__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.bing-ttl {
  text-align: center;
}
@media (max-width: 600px) {
  .bing-ttl {
    padding: 0 2%;
  }
}

.bing-flex {
  display: flex;
}
@media (min-width: 769px) {
  .bing-flex {
    align-items: center;
    justify-content: space-between;
  }
  .bing-flex.-re {
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  .bing-flex {
    flex-direction: column;
  }
  .bing-flex.-re {
    flex-direction: column;
  }
}

.bing-flex__img,
.bing-flex__txt {
  width: 48%;
}
@media (max-width: 768px) {
  .bing-flex__img,
  .bing-flex__txt {
    margin-top: 30px;
    width: 100%;
  }
}

.bing-flex__txt.-ai_icon {
  background-image: url(image.php?id=063);
  background-position: top 50% right;
  background-repeat: no-repeat;
  background-size: 150px;
}
@media (max-width: 768px) {
  .bing-flex__txt.-ai_icon {
    background-position: center;
    background-size: 100px;
  }
}
.bing-flex__txt p:not(:first-child) {
  margin-top: 1em;
}

.bing-textbox {
  background-image: url(image.php?id=080);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-top: 50px;
  padding: 50px 30px;
  text-align: center;
}
.bing-textbox p {
  line-height: 1.5;
}

.bing-section__txt {
  text-align: center;
}

.bing-section__img {
  margin-top: 30px;
}

.link-source {
  font-size: 14px;
  margin-left: 2.5em;
  text-indent: -2.5em;
}
.link-source a {
  word-break: break-all;
}
.link-source a:hover {
  text-decoration: underline;
}

.bing-pc-block {
  display: none;
  visibility: hidden;
}
@media (min-width: 769px) {
  .bing-pc-block {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  .bing-tb-block {
    display: block;
    visibility: visible;
  }
}
@media (max-width: 480px) {
  .bing-tb-block {
    display: none;
    visibility: hidden;
  }
}

.icon-link {
  display: block;
  font-size: 10px;
  font-weight: normal;
  margin-top: 5px;
}