@charset "utf-8";

/* CSS Document */
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.pb10 {
  padding-bottom: 10px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.p10 {
  padding: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pl20 {
  padding-left: 20px;
}

.w60 {
  width: 60%;
}

.block {
  display: block;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.textListNote-1.mt10 {
  margin-top: 10px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.jst-between {
  justify-content: space-between;
}

h5.strong {
  font-size: 1.3em;
  font-weight: bold
}

.border-box {
  border: solid 3px #aaa;
  padding: 25px 15px 0;
  margin-bottom: 10px;
}

.floating-banner {
  display: none;
  /*最初は隠す*/
  position: fixed;
  /* バナーを追従させる */
  z-index: 99999;
  /* 他の要素の下に隠れないように */
  bottom: 120px;
  /* バナーの上下の位置 */
  right: 0;
  /* バナーの左右の位置 */
  width: 220px;
  /* バナーの横幅 */
}

.floating-banner__image {
  max-width: 100%;
  /* 画像の最大幅 */
}

/*@media screen and (max-width: 990px) { 
    display: none; 
  }
}*/
@media screen and (max-width: 560px) {

  /* スマホ用のブレイクポイントを指定 */
  .floating-banner {
    display: block;
    /* 消していたバナーを表示させる */
    width: 100vw;
    /* スマホの画面幅いっぱいにバナーを表示 */
    bottom: 0;
  }
}

/* checkbox non-display */
.add-control .checkbox {
  display: none;
}

/* close button's control */
.add-control .action-close #close:checked~.btn {
  display: none;
}

.add-control .action-close #close:checked~.box {
  display: none;
}

.action-close label {
  display: flex;
  justify-content: flex-end;
}

.round_btn {
  display: block;
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid #999;
  /* 枠の調整 */
  background: #fff;
  /* ボタンの背景色 */
}

.round_btn::before,
.round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #999;
  /* バツ印の色 */
}

.round_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* アコーディオンのタイトル 共通設定 */
/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
.dtls-summary {
  position: relative;
  padding-left: 25px;
  padding-bottom: 15px;
  cursor: pointer;
  list-style: none;
}

/* アコーディオンのタイトル */
.icon-arrow:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #2c5200;
  border-radius: 50%;
  top: 50%;
  left: 0;
  margin-top: -26px;
}

.icon-arrow:after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 50%;
  left: 4px;
  transform: rotate(45deg);
  margin-top: -20px;
}

/* アコーディオンのタイトル オープン時 */
.dtls[open] .icon-arrow:after {
  transform: rotate(135deg);
  left: 6px;
  top: 45%;
}

@media screen and (max-width: 560px) {

  /* スマホ用のブレイクポイントを指定 */
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/*PCO強調するbox*/
.point-box,
.point-box_nowrap,
.point-box_noflex {
  background-color: #dadf00;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding: 0.5em 1em;
  display: inline-block;
}

.point-box_noflex h4 {
  font-weight: bold;
  font-size: 1.3em;
}

.point-box_noflex h4 span {
  color: #199c75;
  text-align: center;
}

.point-box_noflex .plus-button {
  background-color: #199c75;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 1px auto;
  margin: 10px auto;
}

@media screen and (max-width: 768px) {

  .point-box,
  .point-box_nowrap,
  .point-box_noflex {
    font-size: 1em;
  }
}

.point-box ul,
.point-box_nowrap ul {
  /*スマホでリストが横並びから縦に並ぶ仕様。縦に並ばないもの(短文のもの）は.point-box_nowrap*/
  display: flex;
  flex-wrap: wrap;
}

/*.point-box .box-title, .point-box_nowrap .box-title {
  position: absolute;
  display: inline-block;
  top: -38px;
  left: -4px;
  padding: 4px 10px;
  height: 28px;
  line-height: 28px;
  font-size: 20px;
  background: #cccccc;
  color: #666666;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}*/
.point-box ul li,
.point-box_nowrap ul li {
  margin-right: 10px;
}

.point-box ul li:last-child,
.point-box_nowrap ul li:last-child {
  margin-right: none;
}

.point-box p {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {

  .point-box,
  .point-box_nowrap {
    display: block;
  }

  .point-box ul {
    display: block;
  }
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: solid 1px #999999;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #cccccc;
}

.circled-number {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  background-color: #2c5200;
  margin-right: 10px;
}

/*COP*/
.logo_coplus {
  display: block;
  max-width: 400px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .logo_coplus {
    max-width: 300px;
  }
}

.logo-caption {
  text-align: center;
  font-size: 1.6em;
  line-height: 1.4em;
  background-color: #cede9b;
  padding: 3px 10px;
  border-radius: 25px;
  margin-bottom: 20px;
}

.logo-caption span {
  color: #199c75;
  font-weight: bold;
}

.emphasize {
  font-size: 130%;
  text-align: center;
  border: solid 2px #2c5200;
  padding: 10px
}